Fix elm progressbar theme.

SVN revision: 41945
This commit is contained in:
Daniel Kolesa 2009-08-24 07:03:11 +00:00
parent b3e2249849
commit bda28da4f3
2 changed files with 6 additions and 6 deletions

View File

@ -11829,11 +11829,11 @@ collections {
description { state: "default" 0.0;
visible: 0;
rel1 {
to: "elm.text.content";
to: "elm.text.status";
offset: -2 -2;
}
rel2 {
to: "elm.text.content";
to: "elm.text.status";
offset: 2 2;
}
color: 255 255 255 0;
@ -11843,7 +11843,7 @@ collections {
visible: 1;
}
}
part { name: "elm.text.content";
part { name: "elm.text.status";
type: TEXT;
mouse_events: 0;
scale: 1;
@ -11902,14 +11902,14 @@ collections {
signal: "elm,state,units,visible";
source: "elm";
action: STATE_SET "visible" 0.0;
target: "elm.text.content";
target: "elm.text.status";
target: "elm.text.box";
}
program { name: "units_hide";
signal: "elm,state,units,hidden";
source: "elm";
action: STATE_SET "default" 0.0;
target: "elm.text.content";
target: "elm.text.status";
target: "elm.text.box";
}
program { name: "slide_to_end";

View File

@ -6,7 +6,7 @@ typedef struct _Widget_Data Widget_Data;
struct _Widget_Data
{
Evas_Object *sep;
Eina_Bool horizontal : 1;
Eina_Bool horizontal;
};
static void _del_hook(Evas_Object *obj);