*/}}
소스 검색

Fix extra argument

YimingWu 20 시간 전
부모
커밋
2e6ba387ad
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      la_kernel.c

+ 2 - 1
la_kernel.c

@@ -8476,7 +8476,8 @@ int la_ProcessSysMessage(){
         case Expose:
             wnd = lstFindItem(e.xexpose.window, la_IsThisSysWindow, &MAIN.Windows);
             if(!wnd) break;
-            laRefreshWindow(wnd);
+            MAIN.CurrentWindow=wnd;
+            laRefreshWindow();
             break;
         case MotionNotify:
             la_SendMouseEvent(e.xmotion.window, LA_MOUSEMOVE, e.xmotion.x,e.xmotion.y);