From: Woochan Lee Date: Mon, 13 Feb 2017 04:18:02 +0000 (+0900) Subject: multibuttonentry: input panel should be shown whenever mbe is clicked X-Git-Tag: submit/tizen/20170221.045909~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e7ced8ed02fbec9b9974a46040871259a2c6a64f;p=platform%2Fupstream%2Felementary.git multibuttonentry: input panel should be shown whenever mbe is clicked Change-Id: I112eba1ee9f0e659225e7e2f4ebfe0b3f6066df9 --- diff --git a/src/lib/elc_multibuttonentry.c b/src/lib/elc_multibuttonentry.c index b4dbef86f..a22fca731 100644 --- a/src/lib/elc_multibuttonentry.c +++ b/src/lib/elc_multibuttonentry.c @@ -1069,6 +1069,10 @@ _mouse_clicked_signal_cb(void *data EINA_UNUSED, const char *emission EINA_UNUSED, const char *source EINA_UNUSED) { + ELM_MULTIBUTTONENTRY_DATA_GET_OR_RETURN(obj, sd); + + if (sd->editable) elm_entry_input_panel_show(sd->entry); + eo_do(obj, eo_event_callback_call(EVAS_CLICKABLE_INTERFACE_EVENT_CLICKED, NULL)); }