mirror of https://github.com/buggins/dlangui.git
add font antialiasing and hinting settings to example1
This commit is contained in:
parent
269b1736d3
commit
eef521432f
|
@ -186,7 +186,10 @@ extern (C) int UIAppMain(string[] args) {
|
||||||
// load theme from file "theme_default.xml"
|
// load theme from file "theme_default.xml"
|
||||||
Platform.instance.uiTheme = "theme_default";
|
Platform.instance.uiTheme = "theme_default";
|
||||||
|
|
||||||
//drawableCache.get("tx_fabric.tiled");
|
// you can override default hinting mode here
|
||||||
|
FontManager.instance.hintingMode = HintingMode.Normal;
|
||||||
|
// you can override antialiasing setting here
|
||||||
|
FontManager.instance.minAnitialiasedFontSize = 16;
|
||||||
|
|
||||||
// create window
|
// create window
|
||||||
Window window = Platform.instance.createWindow("My Window", null);
|
Window window = Platform.instance.createWindow("My Window", null);
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue