Make disabled outputs appear gray not, translucent

SVN revision: 66288
This commit is contained in:
Leif Middelschulte 2011-12-16 14:19:30 +00:00
parent f5bf360e9a
commit 04705b92d4
1 changed files with 26 additions and 2 deletions

View File

@ -84,6 +84,30 @@ collections {
}
}
description {
state: "disabled" 0.0;
inherit: "default" 0.0;
color: 128 128 128 255;
}
}
part {
name: "state_layer";
type: RECT; // Overlay for gray-out in case of disabled outputs
description {
state: "default" 0.0;
color: 255 255 255 0;
rel1 {
to: "e.swallow.content";
relative: 0.0 0.0;
}
rel2 {
to: "e.swallow.content";
relative: 1.0 1.0;
}
}
description {
state: "disabled" 0.0;
inherit: "default" 0.0;
@ -424,7 +448,7 @@ collections {
signal: "disabled";
source: "e";
action: STATE_SET "disabled" 0.0;
target: "e.swallow.content";
target: "state_layer";
}
program {
@ -432,7 +456,7 @@ collections {
signal: "enabled";
source: "e";
action: STATE_SET "default" 0.0;
target: "e.swallow.content";
target: "state_layer";
}
program {