diff --git a/src/bin/screens/edi_settings.c b/src/bin/screens/edi_settings.c index 3f27f2f..b8167f4 100644 --- a/src/bin/screens/edi_settings.c +++ b/src/bin/screens/edi_settings.c @@ -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);