raster pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=2c142e6271025bc2a6b8cee953e29e094adf2507

commit 2c142e6271025bc2a6b8cee953e29e094adf2507
Author: yinsc <[email protected]>
Date:   Mon Jul 7 12:42:43 2014 +0900

    Fix T1289 issue: Elm entry text selection glitch
    
    Summary: Fixes T123
    
    Reviewers: zmike, seoz
    
    CC: yinkair
    
    Maniphest Tasks: T123, T1289
    
    Differential Revision: https://phab.enlightenment.org/D1124
---
 src/lib/elm_entry.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/lib/elm_entry.c b/src/lib/elm_entry.c
index c9714fd..439df31 100644
--- a/src/lib/elm_entry.c
+++ b/src/lib/elm_entry.c
@@ -1711,7 +1711,10 @@ _mouse_down_cb(void *data,
    else if (ev->button == 3)
      {
         if (_elm_config->desktop_entry)
-          _menu_call(data);
+          {
+             sd->use_down = 1;
+             _menu_call(data);
+          }
      }
 }
 

-- 


Reply via email to