ソースを参照

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