This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch devs/devilhorns/apos
in repository efl.
View the commit online.
commit a150f68a6fa806f86209a3c7ac8a4aacf3682a34
Author: Carsten Haitzler <ras...@rasterman.com>
AuthorDate: Sun Oct 15 13:42:54 2023 +0100
add checkview for efm detailview
---
data/elementary/themes/edc/fileman.edc | 50 ++++++++++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
diff --git a/data/elementary/themes/edc/fileman.edc b/data/elementary/themes/edc/fileman.edc
index 225198eb30..7fa6075802 100644
--- a/data/elementary/themes/edc/fileman.edc
+++ b/data/elementary/themes/edc/fileman.edc
@@ -1065,6 +1065,56 @@ group { name: "e/fileman/default/filedate";
}
}
+group { name: "e/fileman/default/check";
+ parts {
+ part { name: "base";
+ clip_to: "selected";
+ scale: 1;
+ description { state: "default" 0.0;
+ image.normal: "i-check";
+ rel1.offset: 3 3;
+ rel2.offset: -4 -4;
+ min: 15 15;
+ max: 15 15;
+ visible: 0;
+ offscale;
+ }
+ description { state: "on" 0.0;
+ inherit: "default" 0.0;
+ visible: 1;
+ }
+ }
+ part { name: "selected"; type: RECT;
+ description { state: "default" 0.0;
+ rel.to: "base";
+ color_class: "/fg/normal/fileman/item/check/check";
+ }
+ description { state: "selected" 0.0;
+ inherit: "default" 0.0;
+ color_class: "/fg/selected/fileman/item/check/check";
+ }
+ }
+ }
+ programs {
+ program { signal: "e,state,selected"; source: "e";
+ action: STATE_SET "selected" 0.0;
+ target: "selected";
+ }
+ program { signal: "e,state,unselected"; source: "e";
+ action: STATE_SET "default" 0.0;
+ target: "selected";
+ }
+ program { signal: "e,state,on"; source: "e";
+ action: STATE_SET "on" 0.0;
+ target: "base";
+ }
+ program { signal: "e,state,off"; source: "e";
+ action: STATE_SET "default" 0.0;
+ target: "base";
+ }
+ }
+}
+
group { name: "e/fileman/default/list/detailed";
inherit: "e/fileman/default/list/variable";
parts {
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.