This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository efl.
View the commit online.
commit 01970a3a5c3a76b90911b92560551846218b2d1a
Author: Alastair Poole <m...@alastairpoole.com>
AuthorDate: Fri Jul 26 19:44:28 2024 +0100
elementary_config: change to theme selection list.
Multi-select here is confusing and the behaviour is broken.
As with the rest of the application only allow one item to be
selected at a time.
---
src/bin/elementary/config.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/elementary/config.c b/src/bin/elementary/config.c
index 3c85686431..2cfc3c8841 100644
--- a/src/bin/elementary/config.c
+++ b/src/bin/elementary/config.c
@@ -2251,7 +2251,7 @@ _status_config_themes(Evas_Object *win,
evas_object_show(pd);
li = elm_list_add(win);
- elm_list_multi_select_set(li, EINA_TRUE);
+ elm_list_multi_select_set(li, EINA_FALSE);
evas_object_size_hint_weight_set(li, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
evas_object_size_hint_align_set(li, EVAS_HINT_FILL, EVAS_HINT_FILL);
elm_object_content_set(pd, li);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.