TH - fix bryce spacing

This commit is contained in:
Carsten Haitzler 2018-11-10 11:21:52 +00:00
parent 081fe902c6
commit a4bd5ac068
1 changed files with 18 additions and 3 deletions

View File

@ -212,9 +212,13 @@ group { name: "e/bryce/default/plain"; nomouse;
}
}
spacer { "sizer";
desc {
rel1.offset: 0 0;
rel2.offset: -1 -1;
description { state: "default" 0.0;
rel1.offset: 3 1;
rel2.offset: -4 -2;
}
description { state: "vert" 0.0;
rel1.offset: 1 3;
rel2.offset: -2 -4;
}
}
part { name: "e.swallow.content"; type: SWALLOW; mouse;
@ -231,6 +235,17 @@ group { name: "e/bryce/default/plain"; nomouse;
desc { color: 0 0 0 0; }
}
}
programs {
#define ORIENT_SATE(_ORIENT, _STATE) \
program { \
signal: "e,state,orient,"_ORIENT; source: "e"; \
action: STATE_SET _STATE 0.0; \
target: "sizer"; \
}
ORIENT_SATE("horiontal", "default")
ORIENT_SATE("vertical", "vert")
#undef ORIENT_SATE
}
}
group { "elm/scroller/base/bryce";