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 5205fad15b7cc707aa8d13f75eed1944be5958b6
Author: Carsten Haitzler <[email protected]>
AuthorDate: Sun Jul 12 09:56:12 2026 +0100
ibar - fix orientation niggle where
fix ibar icons orienting wrongly.
@fix
---
src/modules/ibar/e_mod_main.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/modules/ibar/e_mod_main.c b/src/modules/ibar/e_mod_main.c
index cd5c12bc3..d870fac4f 100644
--- a/src/modules/ibar/e_mod_main.c
+++ b/src/modules/ibar/e_mod_main.c
@@ -359,6 +359,7 @@ _gc_orient(E_Gadcon_Client *gcc, E_Gadcon_Orient orient)
inst = gcc->data;
if ((int)orient != -1) inst->orient = orient;
+ else return;
if (_is_vertical(inst))
{
@@ -1968,7 +1969,7 @@ _ibar_cb_icon_move(void *data, Evas *e, Evas_Object *obj, void *event_info EINA_
(ic->ibar->inst->orient == E_GADCON_ORIENT_CORNER_RT) ||
(ic->ibar->inst->orient == E_GADCON_ORIENT_CORNER_RB))
sig = "e,origin,right";
- else
+ else if (ic->ibar->inst->orient == E_GADCON_ORIENT_FLOAT)
{
if (chx - (len / 2) < zone->x)
sig = "e,origin,left";
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.