This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch fix-elipsis-tab
in repository terminology.
View the commit online.
commit 9ea4edc9abe782267b39c33616bc65dad1ce2309
Author: [email protected] <[email protected]>
AuthorDate: Sat May 23 10:22:08 2026 -0600
fix(theme): restore tabcount label text anchor position
The rel1/rel2 geometry for terminology.tabcount.label was broken
by commit 58c718d1 ("theme - the great flattening"). It resolved
to a negative-width region (rel1 at 0,0 to rel2 at 0,1 with -5px
offset), which Evas swaps to a 5-px-wide clip. Combined with
fixed: 1 1, the text's min-from-content was blocked from
propagating, causing ellipsis truncation ("1..." instead of "1/2").
Restore the zero-width anchor at the control's left edge so text
grows leftward freely via align: 1.0 0.5.
Fixes #XXXX
---
data/themes/default/background.edc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/data/themes/default/background.edc b/data/themes/default/background.edc
index ef532f15..5a9f1e14 100644
--- a/data/themes/default/background.edc
+++ b/data/themes/default/background.edc
@@ -108,9 +108,9 @@ group { name: "terminology/background";
description { state: "default" 0.0;
fixed: 1 1;
rel.to: "terminology.tabcount.control";
- rel2.offset: -5 0;
+ rel1.relative: 0.0 0.0;
rel2.relative: 0.0 1.0;
- rel2.offset: -5 -1;
+ rel2.offset: -1 -1;
offscale;
color: 255 255 255 160; // no cc
color_class: "/fg/normal/term/text/tabcount";
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.