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
This commit is contained in:
yinsc 2014-07-07 12:42:43 +09:00 committed by Carsten Haitzler (Rasterman)
parent 84f5de5a74
commit 004bbb2dfc
1 changed files with 4 additions and 1 deletions

View File

@ -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);
}
}
}