Settings: Fix debugger combobox sizing.

This commit is contained in:
Alastair Poole 2019-12-16 22:25:31 +00:00
parent 1d7662d02c
commit be5868e8d4
1 changed files with 2 additions and 2 deletions

View File

@ -569,9 +569,9 @@ _edi_settings_builds_create(Evas_Object *parent)
combobox = elm_combobox_add(box);
if (_edi_project_config->debug_command)
elm_object_part_text_set(combobox, "guide", _edi_project_config->debug_command);
elm_object_text_set(combobox, _edi_project_config->debug_command);
else
elm_object_part_text_set(combobox, "guide", edi_debug_tools_get()[0].name);
elm_object_text_set(combobox, edi_debug_tools_get()[0].name);
evas_object_size_hint_weight_set(combobox, 0.75, 0.0);
evas_object_size_hint_align_set(combobox, EVAS_HINT_FILL, EVAS_HINT_FILL);