settings: disable highlight settings win display.

This disables the initial highlighting on the settings
window. Cosmetically gets rid of the initial hidden
rectangle focus. If a user presses tab, focus and selection
works as normal.
This commit is contained in:
Alastair Poole 2018-08-22 15:17:52 +01:00
parent 383573fd0a
commit 5cac73c2c7
1 changed files with 1 additions and 1 deletions

View File

@ -841,7 +841,7 @@ edi_settings_show(Evas_Object *mainwin)
if (!win) return NULL;
elm_win_title_set(win, _("Edi Settings"));
elm_win_focus_highlight_enabled_set(win, EINA_TRUE);
elm_win_focus_highlight_enabled_set(win, EINA_FALSE);
evas_object_smart_callback_add(win, "delete,request", _edi_settings_exit, win);
bg = elm_bg_add(win);