This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch devs/dimmus/meson
in repository efl.
View the commit online.
commit 8a66005372d3d8c91345dd3fa3d6f15bb79f1e5e
Author: Carsten Haitzler <ras...@rasterman.com>
AuthorDate: Wed Dec 4 19:35:35 2024 +0000
elm theme - win - fix shadow hider to hide and stay hidden
focus would show the shadow again... wrong. we had clip2 for that...
use it right. this caused myusterious little image artefacts in
thumbnails in efm... this fixes it.
@fix
---
data/elementary/themes/edc/elm/border.edc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/data/elementary/themes/edc/elm/border.edc b/data/elementary/themes/edc/elm/border.edc
index 8f56316fa5..5eeb0aea7c 100644
--- a/data/elementary/themes/edc/elm/border.edc
+++ b/data/elementary/themes/edc/elm/border.edc
@@ -29,10 +29,10 @@ group { name: "elm/border/base/default";
new s_hide = get_int(hide_shadow);
if (s_hide) {
- set_state(PART:"shadow_clip", "hidden", 0.0);
+ set_state(PART:"shadow_clip2", "hidden", 0.0);
set_state(PART:"shadow_base", "hidden", 0.0);
} else {
- set_state(PART:"shadow_clip", "default", 0.0);
+ set_state(PART:"shadow_clip2", "default", 0.0);
set_state(PART:"shadow_base", "default", 0.0);
}
if ((m_show)/* && (s_hide)*/) {
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.