소스 검색

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