瀏覽代碼

X11: only send mouse button up events if not a mousewheel "button"

(Brackets in the wrong place, my bad!)
Ryan C. Gordon 10 年之前
父節點
當前提交
f2f8e6f5ef
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/video/x11/SDL_x11events.c

+ 1 - 1
src/video/x11/SDL_x11events.c

@@ -1029,8 +1029,8 @@ X11_DispatchEvent(_THIS)
                     /* see explanation at case ButtonPress */
                     button -= (8-SDL_BUTTON_X1);
                 }
+                SDL_SendMouseButton(data->window, 0, SDL_RELEASED, button);
             }
-            SDL_SendMouseButton(data->window, 0, SDL_RELEASED, button);
         }
         break;