elementary/video - added missed "" for strings .

SVN revision: 60964
This commit is contained in:
ChunEon Park 2011-07-04 05:15:58 +00:00
parent 3a0636d1f1
commit 4fa24c7896
1 changed files with 9 additions and 9 deletions

View File

@ -36517,7 +36517,7 @@ collections {
color: 255 255 255 255;
}
description {
state: darker 0.0;
state: "darker" 0.0;
color: 128 128 128 255;
}
}
@ -36540,30 +36540,30 @@ collections {
signal: "elm,video,load";
source: "elm";
action: STATE_SET darker 0.0;
target: clipper;
action: STATE_SET "darker" 0.0;
target: "clipper";
}
program {
signal: "elm,video,play";
source: "elm";
action: STATE_SET default 0.0;
target: clipper;
action: STATE_SET "default" 0.0;
target: "clipper";
}
program {
signal: "elm,video,end";
source: "elm";
action: STATE_SET darker 0.0;
target: clipper;
action: STATE_SET "darker" 0.0;
target: "clipper";
transition: LINEAR 0.5;
}
program {
signal: "elm,video,pause";
source: "elm";
action: STATE_SET darker 0.0;
target: clipper;
action: STATE_SET "darker" 0.0;
target: "clipper";
}
}
}