From 33dc8249fd7c9add67c874cec8d517a315e41dac Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Sun, 17 Feb 2013 09:47:09 -0500
Subject: [PATCH] Fix regression in copying contacts (with drag'n'drop)

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

diff --git a/program/js/app.js b/program/js/app.js
index 18baf80..4ecbda7 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -771,7 +771,7 @@
       case 'moveto':
         if (this.task == 'mail')
           this.move_messages(props);
-        else if (this.task == 'addressbook' && this.drag_active)
+        else if (this.task == 'addressbook')
           this.copy_contact(null, props);
         break;
 

--
Gitblit v1.9.1