raster pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=0b1b9fc9d109719935eaa8fc0e657aa6522c7049
commit 0b1b9fc9d109719935eaa8fc0e657aa6522c7049 Author: Carsten Haitzler <[email protected]> Date: Sat Dec 11 09:55:44 2021 +0000 theme - selection - fix signal handling for all the sel modes --- data/themes/default/selection.edc | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/data/themes/default/selection.edc b/data/themes/default/selection.edc index 25df15d..278436e 100644 --- a/data/themes/default/selection.edc +++ b/data/themes/default/selection.edc @@ -860,6 +860,30 @@ group { name: "terminology/selection"; } */ + // the outline around the selection... +#define TARGETS \ + target: "top_clip"; target: "middle_clip"; target: "bottom_clip"; + + program { signal: "mode,oneline"; source: "terminology"; + action: STATE_SET "oneline" 0.0; + TARGETS; + } + program { signal: "mode,disjoint"; source: "terminology"; + action: STATE_SET "disjoint" 0.0; + TARGETS; + } + program { signal: "mode,multiline"; source: "terminology"; + action: STATE_SET "default" 0.0; + TARGETS; + } + program { signal: "mode,topfull"; source: "terminology"; + action: STATE_SET "topfull" 0.0; + TARGETS; + } + program { signal: "mode,bottomfull"; source: "terminology"; + action: STATE_SET "bottomfull" 0.0; + TARGETS; + } // top and bottom swallows used to coimmunicate via min/max size the // size of the top and bottom lines part { name: "terminology.top_left"; type: SWALLOW; --
