elementary/elm_win : Focus highlight should be reconfigured when theme is changed.

This commit is contained in:
WooHyun Jung 2013-03-18 18:44:19 +09:00
parent 82053ab780
commit c739dbe4f4
3 changed files with 7 additions and 1 deletions

View File

@ -1157,3 +1157,7 @@
2013-03-15 Jaehwan Kim
* Add the smart signals in scroller. "scroll,left", "scroll,right", "scroll,up", "scroll,down".
2013-03-18 WooHyun Jung
* Focus highlight should be reconfigured when theme is changed.

View File

@ -185,6 +185,7 @@ Fixes:
* Entry: Fixed a bug with text appending.
* Fixed a bug in elm_list. Focus_next is needed only when access mode is enabled.
* Fix a memory leak of elm_genlist - EINA_LIST_FREE should be used for returned value of elm_genlist_realized_items_get
* Focus highlight should be reconfigured when theme is changed.
Removals:

View File

@ -707,7 +707,8 @@ _elm_win_focus_highlight_reconfigure(Elm_Win_Smart_Data *sd)
sd->focus_highlight.prev.visible);
if ((target == previous) && (!visible_changed) &&
(!sd->focus_highlight.geometry_changed))
(!sd->focus_highlight.geometry_changed) &&
(!sd->focus_highlight.changed_theme))
return;
if ((previous) && (sd->focus_highlight.prev.handled))