From 68cf63296f651eb02fab0d4533906dcd15609a9d Mon Sep 17 00:00:00 2001 From: David Lamparter Date: Sun, 26 Mar 2006 03:05:43 +0000 Subject: [PATCH] (by nich:) fix empty cursor on GTK Originally committed to SVN as r246. --- core/video_display.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/core/video_display.cpp b/core/video_display.cpp index d98f16de1..467d8a5d6 100644 --- a/core/video_display.cpp +++ b/core/video_display.cpp @@ -111,7 +111,13 @@ VideoDisplay::VideoDisplay(wxWindow* parent, wxWindowID id, const wxPoint& pos, wxImage::AddHandler(png); // Set cursor + // Bleeeh! Hate this 'solution': +#if __WXGTK__ + static char cursor_image[] = {0}; + wxCursor cursor(cursor_image, 8, 1, -1, -1, cursor_image); +#else wxCursor cursor(wxCURSOR_BLANK); +#endif // __WXGTK__ SetCursor(cursor); }