Browse Source

RequestFile fix.

Mark Sibly 9 năm trước cách đây
mục cha
commit
561a402ca8
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 2 1
      src/ted2/mainwindow.monkey2

+ 2 - 1
src/ted2/mainwindow.monkey2

@@ -222,7 +222,8 @@ Class MainWindowInstance Extends Window
 		Local future:=New Future<String>
 		
 		App.Idle+=Lambda()
-			future.Set( requesters.RequestFile( title,path,save ) )
+		
+			future.Set( requesters.RequestFile( title,,save,path ) )
 		End
 		
 		Return future.Get()