This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository enlightenment.
View the commit online.
commit 777f82f6fd381487c50d39aaa3a50eb0f9d19bd3
Author: Carsten Haitzler <[email protected]>
AuthorDate: Mon Jan 12 08:12:47 2026 +0000
clipboard - tune list item layout
---
src/modules/clipboard/e_mod_main.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/modules/clipboard/e_mod_main.c b/src/modules/clipboard/e_mod_main.c
index 95490e910..4006cd6c5 100644
--- a/src/modules/clipboard/e_mod_main.c
+++ b/src/modules/clipboard/e_mod_main.c
@@ -275,7 +275,7 @@ _cb_gl_icon_get(void *data, Evas_Object *obj, const char *part EINA_UNUSED)
bx = o = elm_box_add(obj);
elm_box_horizontal_set(o, EINA_TRUE);
evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
- evas_object_size_hint_align_set(o, 0.0, EVAS_HINT_FILL);
+ evas_object_size_hint_align_set(o, EVAS_HINT_FILL, EVAS_HINT_FILL);
o = elm_label_add(obj);
elm_object_style_set(o, "default/left");
@@ -285,7 +285,7 @@ _cb_gl_icon_get(void *data, Evas_Object *obj, const char *part EINA_UNUSED)
elm_object_text_set(o, s);
free(s);
evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
- evas_object_size_hint_align_set(o, 0.0, EVAS_HINT_FILL);
+ evas_object_size_hint_align_set(o, EVAS_HINT_FILL, 0.5);
elm_box_pack_end(bx, o);
evas_object_show(o);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.