summaryrefslogtreecommitdiff
path: root/program
diff options
context:
space:
mode:
authortill <till@php.net>2008-02-16 18:31:19 +0000
committertill <till@php.net>2008-02-16 18:31:19 +0000
commit26973a1fc3ed100749d7c9aad8dd4f7af4082d96 (patch)
treeb19386eaa3b9240f5e55fcfbd78c3bb173552777 /program
parent342db9d08ac772686687d2c15f89a8bfeaad1f7e (diff)
* addapted patch from #1484777 (Thanks ulysses.almeida)
Diffstat (limited to 'program')
-rw-r--r--program/js/app.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/program/js/app.js b/program/js/app.js
index 20cd67b2c..eef6d28b3 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -1091,15 +1091,15 @@ function rcube_webmail()
// onmouseup handler for folder list item
this.folder_mouse_up = function(id)
{
+ // Hide message command buttons until a message is selected
+ this.enable_command('reply', 'reply-all', 'forward', 'delete', 'mark', 'print', false);
+
if (this.drag_active)
{
this.unfocus_folder(id);
this.command('moveto', id);
}
- // Hide message command buttons until a message is selected
- this.enable_command('reply', 'reply-all', 'forward', 'delete', 'mark', 'print', false);
- return false;
};
this.click_on_list = function(e)