From 52577946e351c8f42403451020556c244388b26b Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Thu, 27 Nov 2008 16:37:48 +0000 Subject: [PATCH] Set compatible text rendering to false, in order to improve text rendering in the WinForms samples. --- Source/Examples/ExampleLauncher.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Examples/ExampleLauncher.cs b/Source/Examples/ExampleLauncher.cs index 0efef5d9..ac92204e 100644 --- a/Source/Examples/ExampleLauncher.cs +++ b/Source/Examples/ExampleLauncher.cs @@ -246,7 +246,7 @@ namespace Examples //fileIO.Demand(); Application.EnableVisualStyles(); - Application.SetCompatibleTextRenderingDefault(true); + Application.SetCompatibleTextRenderingDefault(false); using (Form exampleLauncher = new ExampleLauncher()) { Application.Run(exampleLauncher);