From 0632f3eec477f4b0adeeddc823610ebf2e7bcb51 Mon Sep 17 00:00:00 2001 From: Vadim Lopatin Date: Mon, 19 Jan 2015 11:43:11 +0300 Subject: [PATCH] turn on antialiasing for example1 --- examples/example1/src/main.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/example1/src/main.d b/examples/example1/src/main.d index e5cd0e83..b39d9a2f 100644 --- a/examples/example1/src/main.d +++ b/examples/example1/src/main.d @@ -189,7 +189,7 @@ extern (C) int UIAppMain(string[] args) { // you can override default hinting mode here FontManager.instance.hintingMode = HintingMode.Normal; // you can override antialiasing setting here - FontManager.instance.minAnitialiasedFontSize = 16; + FontManager.instance.minAnitialiasedFontSize = 0; // 0 means always antialiased // create window Window window = Platform.instance.createWindow("My Window", null);