From f868f88665d2d72e542b0c1cd16c8d9dd4e246ae Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Mon, 9 Oct 2006 15:51:22 +0000 Subject: [PATCH] set anti-aliasing ON by default git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41805 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/graphics.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/msw/graphics.cpp b/src/msw/graphics.cpp index bdad1343e3..7acde4bd2c 100644 --- a/src/msw/graphics.cpp +++ b/src/msw/graphics.cpp @@ -348,6 +348,7 @@ wxGDIPlusContext::wxGDIPlusContext( WXHDC hdc ) { gGDILoader.EnsureIsLoaded(); m_context = new Graphics( (HDC) hdc); + m_context->SetSmoothingMode(SmoothingModeHighQuality); m_state1 = m_context->Save(); m_state2 = m_context->Save();