Pager Gadget: Use the correct value for the popup checkbox when config window is opened.

This commit is contained in:
Stephen okra Houston 2016-11-05 12:00:30 -05:00
parent 6b1726dc4a
commit b0fd89ac04
1 changed files with 1 additions and 1 deletions

View File

@ -388,7 +388,7 @@ _config_create_pages(Evas_Object *parent)
ow = elm_check_add(tb);
elm_object_text_set(ow, _("Show popup on desktop change"));
evas_object_size_hint_align_set(ow, 0.0, EVAS_HINT_FILL);
elm_check_state_set(ow, pager_config->show_desk_names);
elm_check_state_set(ow, pager_config->popup);
elm_table_pack(tb, ow, 0, 0, 1, 1);
E_ALIGN(ow, EVAS_HINT_FILL, EVAS_HINT_FILL);
E_WEIGHT(ow, EVAS_HINT_EXPAND, 0);