[elementary/multibutton_entry] Fix focus problem in multibuttonentry.

Entry can get focus only when multibuttonentry is focused.


SVN revision: 80433
This commit is contained in:
WooHyun Jung 2012-12-07 10:54:04 +00:00
parent d878e2fb9e
commit 2bbb2dac16
3 changed files with 5 additions and 1 deletions

View File

@ -789,3 +789,6 @@
* Safer call to mkstemp in elm_cnp.
* Simplify test in elm_entry_text_set.
2012-12-07 WooHyun Jung
* Fix focus problem in multibuttonentry. Entry can get focus only when multibuttonentry is focused.

View File

@ -85,6 +85,7 @@ Fixes:
have resized, it wouldn't be showed up.
* Safer call to mkstemp in elm_cnp.
* Simplify test in elm_entry_text_set.
* Fix focus problem in multibuttonentry. Entry can get focus only when multibuttonentry is focused.
Removals:

View File

@ -884,7 +884,7 @@ _mouse_clicked_signal_cb(void *data,
_view_update(sd);
if (sd->editable)
if (elm_widget_focus_get(data) && sd->editable)
{
elm_entry_input_panel_show(sd->entry);
elm_object_focus_set(sd->entry, EINA_TRUE);