stats/hotkeys - set invisible state as default

This commit is contained in:
ChunEon Park 2014-03-02 16:57:22 +09:00
parent 1414c92397
commit 5c68216676
2 changed files with 13 additions and 13 deletions

View File

@ -439,12 +439,12 @@ group { name: "main_layout";
rel2.relative: 1 0;
min: 0 26;
fixed: 0 1;
align: 0.5 0;
}
description { state: "hide" 0.0;
inherit: "default";
align: 0.5 1;
}
description { state: "visible" 0.0;
inherit: "default";
align: 0.5 0;
}
}
part { name: "hotkey_overlay";
type: IMAGE;
@ -474,38 +474,38 @@ group { name: "main_layout";
description { state: "default" 0.0;
rel1.relative: 0 1;
rel2.relative: 1 1;
align: 0.5 1;
align: 0.5 0;
min: 0 15;
fixed: 0 1;
}
description { state: "hide" 0.0;
description { state: "visible" 0.0;
inherit: "default" 0.0;
align: 0.5 0;
align: 0.5 1;
}
}
}
programs {
program { name: "statusbar_show";
signal: "elm,state,statusbar,show";
action: STATE_SET "default" 0.0;
action: STATE_SET "visible" 0.0;
target: "elm.swallow.statusbar";
transition: DECELERATE 0.35;
}
program { name: "statusbar_hide";
signal: "elm,state,statusbar,hide";
action: STATE_SET "hide" 0.0;
action: STATE_SET "default" 0.0;
target: "elm.swallow.statusbar";
transition: DECELERATE 0.35;
}
program { name: "hotkeys_show";
signal: "elm,state,hotkeys,show";
action: STATE_SET "default" 0.0;
action: STATE_SET "visible" 0.0;
target: "elm.swallow.hotkeys";
transition: DECELERATE 0.35;
}
program { name: "hotkeys_hide";
signal: "elm,state,hotkeys,hide";
action: STATE_SET "hide" 0.0;
action: STATE_SET "default" 0.0;
target: "elm.swallow.hotkeys";
transition: DECELERATE 0.35;
}

View File

@ -122,12 +122,12 @@ config_load()
cd->font_size = 1.0f;
cd->view_scale = 1;
cd->stats_bar = EINA_TRUE;
cd->stats_bar = EINA_FALSE;
cd->linenumber = EINA_TRUE;
cd->part_highlight = EINA_TRUE;
cd->dummy_swallow = EINA_TRUE;
cd->auto_indent = EINA_TRUE;
cd->hotkeys = EINA_TRUE;
cd->hotkeys = EINA_FALSE;
}
g_cd = cd;