diff options
| author | till <till@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-02-16 18:31:19 +0000 |
|---|---|---|
| committer | till <till@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-02-16 18:31:19 +0000 |
| commit | 5968886e9a746f27a3963d70d88481b2acaf167b (patch) | |
| tree | 3880b24776abc5c1352b62778b55761347eb3f79 | |
| parent | 8ea1849056dd71d304d8df7efaafdd7e2cabe55a (diff) | |
* addapted patch from #1484777 (Thanks ulysses.almeida)
git-svn-id: https://svn.roundcube.net/trunk@1098 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/program/js/app.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js index 20cd67b2c..eef6d28b3 100644 --- a/roundcubemail/program/js/app.js +++ b/roundcubemail/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) |
