elementary/elm_win : Focus highlight should be reconfigured when theme is changed.
authorWooHyun Jung <wh0705.jung@samsung.com>
Mon, 18 Mar 2013 09:44:19 +0000 (18:44 +0900)
committerWooHyun Jung <wh0705.jung@samsung.com>
Mon, 18 Mar 2013 09:44:19 +0000 (18:44 +0900)
legacy/elementary/ChangeLog
legacy/elementary/NEWS
legacy/elementary/src/lib/elm_win.c

index e4c6074..25e5eaa 100644 (file)
 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.
index 94867f9..bb317ca 100644 (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:
 
index 4bb366f..73503c7 100644 (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))