diff --git a/src/gtk/window.cpp b/src/gtk/window.cpp index a5aa7f7dac..549adea3f1 100644 --- a/src/gtk/window.cpp +++ b/src/gtk/window.cpp @@ -1547,6 +1547,9 @@ static void SendSetCursorEvent(wxWindow* win, int x, int y) gs_needCursorResetMap[win] = true; return; } + // this is how wxMSW works... + if (w->GetCursor().IsOk()) + break; w = w->GetParent(); } while (w); if (gs_needCursorResetMap[win])