Entry tweak. Dont bother with overlay when you cant type anything.

SVN revision: 50310
This commit is contained in:
toma 2010-07-18 02:03:15 +00:00 committed by toma
parent bf6d13b6f8
commit f14fc78856
1 changed files with 29 additions and 0 deletions

View File

@ -25456,6 +25456,11 @@ collections {
rel2.offset: -2 -2;
color: 255 255 255 255;
}
description {
state: "disabled" 0.0;
inherit: "default" 0.0;
color: 255 255 255 0;
}
}
part {
name: "e.swallow.text";
@ -25482,7 +25487,31 @@ collections {
middle: 0;
}
fill.smooth : 0;
color: 255 255 255 255;
}
description {
state: "disabled" 0.0;
inherit: "default" 0.0;
color: 255 255 255 0;
}
}
}
programs {
program {
name: "disable";
signal: "e,state,disabled";
source: "e";
action: STATE_SET "disabled" 0.0;
target: "overlay";
target: "base";
}
program {
name: "enable";
signal: "e,state,enabled";
source: "e";
action: STATE_SET "default" 0.0;
target: "overlay";
target: "base";
}
}
}