mirror of https://github.com/buggins/dlangui.git
fix console theme
This commit is contained in:
parent
62a1a156b9
commit
60edec10bf
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue