summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2008-07-31 21:50:14 +0000
committerthomascube <thomas@roundcube.net>2008-07-31 21:50:14 +0000
commitaee3a2f1d2688c5b5285a04c3ad30f5fd6a23f37 (patch)
tree22de6917666b6633b95185bdc9aae7c68d98044b
parent64f20dae0cdd3a53114053e3520eb30b71bfa42c (diff)
Fix hiding of mark menu (#1484944)
-rw-r--r--CHANGELOG1
-rw-r--r--skins/default/templates/mail.html2
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index c898ac958..042e38f0b 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -5,6 +5,7 @@ CHANGELOG RoundCube Webmail
----------
- Make default imap folders configurable for each user (#1485075)
- Save outgoing mail to selectable folder (#1324581)
+- Fix hiding of mark menu when clicking th button again (#1484944)
2008/07/21 (alec)
----------
diff --git a/skins/default/templates/mail.html b/skins/default/templates/mail.html
index fe1c5b76a..7b6037b31 100644
--- a/skins/default/templates/mail.html
+++ b/skins/default/templates/mail.html
@@ -28,7 +28,7 @@ show_markmenu: function(show)
body_mouseup: function(evt, p)
{
- if (this.markmenu && this.markmenu.visible)
+ if (this.markmenu && this.markmenu.visible && evt.target != rcube_find_object('markreadbutton'))
this.show_markmenu(false);
},