*/}}
Ver código fonte

Fix extra argument

YimingWu 22 horas atrás
pai
commit
2e6ba387ad
1 arquivos alterados com 2 adições e 1 exclusões
  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);