jpeg pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=b7e51c7dc4c338c6629904bebc6a14b14efef803

commit b7e51c7dc4c338c6629904bebc6a14b14efef803
Author: Woochan Lee <[email protected]>
Date:   Mon Jul 3 16:57:06 2017 +0900

    elm_spinner: Entry hide when inc/dec button pressed.
    
    Summary:
    The entry cursor does not disappear when the user pressed(long press value 
change case) inc/dec button.
    
    @fix
    
    Test Plan: elementary_test -> spinner.
    
    Reviewers: cedric, jpeg, woohyun
    
    Subscribers: cedric, jpeg
    
    Differential Revision: https://phab.enlightenment.org/D4997
---
 src/lib/elementary/elm_spinner.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/lib/elementary/elm_spinner.c b/src/lib/elementary/elm_spinner.c
index 1d188f73c7..4eda6119cc 100644
--- a/src/lib/elementary/elm_spinner.c
+++ b/src/lib/elementary/elm_spinner.c
@@ -845,6 +845,8 @@ _inc_dec_button_pressed_cb(void *data, const Efl_Event 
*event)
    sd->longpress_timer = ecore_timer_add
                            (_elm_config->longpress_timeout,
                             _val_inc_dec_start, data);
+
+   if (sd->entry_visible) _entry_value_apply(data);
 }
 
 static void

-- 


Reply via email to