浏览代码

Added WindowFlags.HighDPI to fonttest banana.

Mark Sibly 9 年之前
父节点
当前提交
5ea5a20677
共有 1 个文件被更改,包括 1 次插入1 次删除
  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