small thing - but make the cursor in exebuf blink.

SVN revision: 25322
This commit is contained in:
Carsten Haitzler 2006-09-02 02:06:47 +00:00
parent bf9d1bba52
commit 90bade8e2b
1 changed files with 23 additions and 0 deletions

View File

@ -306,6 +306,11 @@ group {
normal: "e17_entry_cursor.png";
}
}
description {
state: "faded" 0.0;
inherit: "default" 0.0;
color: 255 255 255 0;
}
}
part {
name: "e.swallow.icons";
@ -350,6 +355,24 @@ group {
}
}
}
programs {
program {
name: "blink1";
signal: "show";
source: "";
action: STATE_SET "faded" 0.0;
transition: SINUSOIDAL 0.5;
target: "cursor";
after: "blink2";
}
program {
name: "blink2";
action: STATE_SET "default" 0.0;
transition: SINUSOIDAL 0.5;
target: "cursor";
after: "blink1";
}
}
}
group {