瀏覽代碼

Ignore bogus FL_MOVE events from FLTK

tags/v1.10.90
Samuel Mannehed 4 年之前
父節點
當前提交
6e8147eb12
共有 1 個文件被更改,包括 6 次插入0 次删除
  1. 6
    0
      vncviewer/DesktopWindow.cxx

+ 6
- 0
vncviewer/DesktopWindow.cxx 查看文件

@@ -755,6 +755,12 @@ int DesktopWindow::fltkHandle(int event, Fl_Window *win)
{
int ret;

// FLTK keeps spamming bogus FL_MOVE events if _any_ X event is
// received with the mouse pointer outside our windows
// https://github.com/fltk/fltk/issues/76
if ((event == FL_MOVE) && (win == NULL))
return 0;

ret = Fl::handle_(event, win);

// This is hackish and the result of the dodgy focus handling in FLTK.

Loading…
取消
儲存