소스 검색

Update mojo App

Mark Sibly 8 년 전
부모
커밋
174112ba8c
1개의 변경된 파일2개의 추가작업 그리고 13개의 파일을 삭제
  1. 2 13
      modules/mojo/app/app.monkey2

+ 2 - 13
modules/mojo/app/app.monkey2

@@ -406,19 +406,7 @@ Class AppInstance
 	#rem monkeydoc @hidden
 	#end
 	Method BeginModal( view:View )
-		
-	#rem
-		If _mouseView
-			SendMouseEvent( EventType.MouseUp,_mouseView )
-			_mouseView=Null
-		Endif
-		
-		If _hoverView
-			SendMouseEvent( EventType.MouseLeave,_hoverView )
-			_hoverView=Null
-		Endif
-	#end
-		
+	
 		_modalStack.Push( _modalView )
 		
 		_modalView=view
@@ -478,6 +466,7 @@ Class AppInstance
 		If Not _window Return Null
 		
 		Local view:=_window.FindViewAtWindowPoint( _mouseLocation )
+		
 		If IsActive( view ) Return view
 		
 		Return Null