From 26973a1fc3ed100749d7c9aad8dd4f7af4082d96 Mon Sep 17 00:00:00 2001
From: till <till@php.net>
Date: Sat, 16 Feb 2008 13:31:19 -0500
Subject: [PATCH] * addapted patch from #1484777 (Thanks ulysses.almeida)

---
 program/js/app.js |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/program/js/app.js b/program/js/app.js
index 20cd67b..eef6d28 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -1091,15 +1091,15 @@
   // 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)

--
Gitblit v1.9.1