edje/entry: fix to not emit "changed" signal in unnecessary cases of password mode.

Summary:
When text is hidden by password character, "changed" signal should be emitted.
But, even if there is no visible text, the signal was emitted.

@fix

Reviewers: woohyun, tasn, cedric

Reviewed By: cedric

CC: cedric

Differential Revision: https://phab.enlightenment.org/D604

Signed-off-by: Cedric BAIL <cedric.bail@samsung.com>
This commit is contained in:
Youngbok Shin 2014-03-07 14:42:49 +09:00 committed by Cedric BAIL
parent 4105c002b3
commit 72c8b04e59
1 changed files with 1 additions and 1 deletions

View File

@ -1275,12 +1275,12 @@ _edje_entry_hide_visible_password(Edje *ed, Edje_Real_Part *rp)
{
evas_textblock_node_format_remove_pair(rp->object,
(Evas_Object_Textblock_Node_Format *) node);
_edje_emit(ed, "entry,changed", rp->part->name);
break;
}
}
}
_edje_entry_real_part_configure(ed, rp);
_edje_emit(ed, "entry,changed", rp->part->name);
}
static Eina_Bool