mirror of https://github.com/buggins/dlangide.git
console mode fixes
This commit is contained in:
parent
21606da3e1
commit
a0594d5922
4
dub.json
4
dub.json
|
@ -12,7 +12,7 @@
|
|||
"stringImportPaths": ["views", "views/res", "views/res/i18n", "views/res/mdpi", "views/res/hdpi"],
|
||||
|
||||
"dependencies": {
|
||||
"dlangui": "==0.8.39",
|
||||
"dlangui": "==0.9.2",
|
||||
"dcd": "~>0.8.0"
|
||||
},
|
||||
|
||||
|
@ -30,7 +30,7 @@
|
|||
"dlangui" : "console"
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
|
||||
"versions": ["EmbedStandardResources"]
|
||||
}
|
||||
|
|
|
@ -24,9 +24,10 @@ class HomeScreen : ScrollWidget {
|
|||
_content = new HorizontalLayout("HOME_SCREEN_BODY");
|
||||
_content.layoutWidth(FILL_PARENT).layoutHeight(FILL_PARENT);
|
||||
VerticalLayout _column1 = new VerticalLayout();
|
||||
_column1.layoutWidth(FILL_PARENT).layoutHeight(FILL_PARENT).padding(Rect(20, 20, 20, 20));
|
||||
int pad = BACKEND_GUI ? 20 : 1;
|
||||
_column1.layoutWidth(FILL_PARENT).layoutHeight(FILL_PARENT).padding(Rect(pad, pad, pad, pad));
|
||||
VerticalLayout _column2 = new VerticalLayout();
|
||||
_column2.layoutWidth(FILL_PARENT).layoutHeight(FILL_PARENT).padding(Rect(20, 20, 20, 20));
|
||||
_column2.layoutWidth(FILL_PARENT).layoutHeight(FILL_PARENT).padding(Rect(pad, pad, pad, pad));
|
||||
_content.addChild(_column1);
|
||||
_content.addChild(_column2);
|
||||
_column1.addChild((new TextWidget(null, "Dlang IDE"d ~ " " ~ DLANGIDE_VERSION)).fontSize(32).textColor(linkColor));
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
fontFace="Verdana,Arial,DejaVu Sans"
|
||||
fontFamily="SansSerif"
|
||||
>
|
||||
<color id="edit_background" value="#FFFFFF"/>
|
||||
<color id="edit_background" value="#000080"/>
|
||||
<color id="link_color" value="#2020FF"/>
|
||||
<color id="syntax_highlight_comment" value="#008000"/>
|
||||
<color id="syntax_highlight_keyword" value="#0000FF"/>
|
||||
|
|
Loading…
Reference in New Issue