mirror of https://github.com/buggins/dlangide.git
fix font antialiasing
This commit is contained in:
parent
9f7c4c5274
commit
d34ece5a58
|
@ -194,7 +194,6 @@
|
||||||
<File path="src\ddc\lexer\exceptions.d" />
|
<File path="src\ddc\lexer\exceptions.d" />
|
||||||
<File path="src\ddc\lexer\Lexer.d" />
|
<File path="src\ddc\lexer\Lexer.d" />
|
||||||
<File path="src\ddc\lexer\LexerException.d" />
|
<File path="src\ddc\lexer\LexerException.d" />
|
||||||
<File path="src\ddc\lexer\SourceEncodingException.d" />
|
|
||||||
<File path="src\ddc\lexer\textsource.d" />
|
<File path="src\ddc\lexer\textsource.d" />
|
||||||
<File path="src\ddc\lexer\tokenizer.d" />
|
<File path="src\ddc\lexer\tokenizer.d" />
|
||||||
</Folder>
|
</Folder>
|
||||||
|
|
|
@ -38,7 +38,7 @@ extern (C) int UIAppMain(string[] args) {
|
||||||
// you can override default hinting mode here
|
// you can override default hinting mode here
|
||||||
FontManager.instance.hintingMode = HintingMode.Normal;
|
FontManager.instance.hintingMode = HintingMode.Normal;
|
||||||
// you can override antialiasing setting here
|
// you can override antialiasing setting here
|
||||||
FontManager.instance.minAnitialiasedFontSize = 25;
|
FontManager.instance.minAnitialiasedFontSize = 0;
|
||||||
|
|
||||||
// create window
|
// create window
|
||||||
Window window = Platform.instance.createWindow("Dlang IDE", null);
|
Window window = Platform.instance.createWindow("Dlang IDE", null);
|
||||||
|
|
Loading…
Reference in New Issue