don't set minw for keyboard layout dialog

somehow this causes the dialog to size crazily for a couple seconds
before growing to its final size
This commit is contained in:
Mike Blumenkrantz 2017-03-10 15:57:16 -05:00
parent 32c55ebc51
commit 4fc6fcf1e3
1 changed files with 1 additions and 1 deletions

View File

@ -1343,7 +1343,7 @@ _dlg_add_new(E_Config_Dialog_Data *cfdata)
/* Holds the available layouts */
available = e_widget_ilist_add(evas, 32, 32, NULL);
e_widget_size_min_set(available, 220, 160);
e_widget_size_min_set(available, 1, 160);
e_widget_ilist_go(available);
e_widget_toolbook_page_append(mainn, NULL, _("Available"), available, 1, 1, 1, 1, 0.5, 0.0);
cfdata->layout_list = available;