fix console theme

This commit is contained in:
Vadim Lopatin 2016-09-13 16:50:28 +03:00
parent 62a1a156b9
commit 60edec10bf
2 changed files with 3 additions and 2 deletions

View File

@ -64,8 +64,8 @@ class StatusLineTextAndIconPanel : StatusLineTextPanel {
this(string ID) {
super(ID);
_icon = new ImageWidget(null);
_icon.minWidth = 20;
_icon.minHeight = 20;
_icon.minWidth = BACKEND_CONSOLE ? 1 : 20;
_icon.minHeight = BACKEND_CONSOLE ? 1 : 20;
_icon.alignment = Align.Center;
addChild(_icon);
}

View File

@ -201,6 +201,7 @@
>
</style>
<style id="TAB_DOWN_BUTTON_DARK" parent="TAB_UP_BUTTON_DARK"
padding="1,0,1,0"
/>
<style id="TAB_UP"