Browse Source

Added WindowFlags.HighDPI to fonttest banana.

Mark Sibly 9 years ago
parent
commit
5ea5a20677
1 changed files with 1 additions and 1 deletions
  1. 1 1
      bananas/fonttest/fonttest.monkey2

+ 1 - 1
bananas/fonttest/fonttest.monkey2

@@ -28,7 +28,7 @@ Class MyWindow Extends Window
 
 	Method New( title:String="Simple mojo app",width:Int=640,height:Int=480,flags:WindowFlags=Null )
 
-		Super.New( title,width,height,flags )
+		Super.New( title,width,height,flags|WindowFlags.HighDPI )
 	End
 
 	Method OnRender( canvas:Canvas ) Override