elm-config: correct wrong "if" statement

If nothing is selected then nothing to disable.
"If" statement did not work here until now.

Test:
1. Run elementary_config from terminal.
2. Select Profile menu item (make no clicks on any item).
4. Close the app.
3. Verify the error log messages before to and following the patch.

@fixed
This commit is contained in:
Dmitri Chudinov 2023-11-15 19:34:51 +05:00
parent 6d0c8f4c82
commit 7309b85f27
Signed by: dimmus
GPG Key ID: D4AED7D0CD0B767C
1 changed files with 1 additions and 1 deletions

View File

@ -3376,7 +3376,7 @@ _profiles_list_unselect_cb(void *data EINA_UNUSED,
Evas_Object *obj,
void *event_info EINA_UNUSED)
{
if (elm_list_selected_item_get(obj)) return;
if (!elm_list_selected_item_get(obj)) return;
elm_object_disabled_set(evas_object_data_get(obj, "prof_del_btn"),
EINA_TRUE);
elm_object_disabled_set(evas_object_data_get(obj, "prof_reset_btn"),