From f1575f9ce24ade35b946723c0d3e46ebe62c849e Mon Sep 17 00:00:00 2001 From: WooHyun Jung Date: Mon, 18 Mar 2013 18:44:19 +0900 Subject: [PATCH] elementary/elm_win : Focus highlight should be reconfigured when theme is changed. --- ChangeLog | 4 ++++ NEWS | 1 + src/lib/elm_win.c | 3 ++- 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index e4c6074..25e5eaa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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. diff --git a/NEWS b/NEWS index 94867f9..bb317ca 100644 --- a/NEWS +++ b/NEWS @@ -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: diff --git a/src/lib/elm_win.c b/src/lib/elm_win.c index 4bb366f..73503c7 100644 --- a/src/lib/elm_win.c +++ b/src/lib/elm_win.c @@ -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)) -- 2.7.4