Browse Source

Fixed mojox template so it actually builds.

Mark Sibly 9 years ago
parent
commit
5d78b9a984
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/ted2/assets/newfiles/Simple_Mojox_Gui_App.monkey2

+ 1 - 1
src/ted2/assets/newfiles/Simple_Mojox_Gui_App.monkey2

@@ -10,7 +10,7 @@ Using mojox..
 Class MyWindow Extends Window
 
 	Method New()
-		Super.New( "Simple Mojo Gui App",640,480,WindowFlags.Window.Resizable )
+		Super.New( "Simple Mojo Gui App",640,480,WindowFlags.Resizable )
 	End
 
 End