From 34cb2199dc8ebd739861736207cce5af870f961d Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Mon, 20 Mar 2000 10:53:48 +0000 Subject: [PATCH] Fixed wrong cursor problem in wxGTK git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6873 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/sashwin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/generic/sashwin.cpp b/src/generic/sashwin.cpp index 6daf05f134..160dcb158b 100644 --- a/src/generic/sashwin.cpp +++ b/src/generic/sashwin.cpp @@ -111,7 +111,7 @@ void wxSashWindow::OnMouseEvent(wxMouseEvent& event) wxSashEdgePosition sashHit = SashHitTest(x, y); // reset the cursor -#ifdef __WXMOTIF__ +#if defined(__WXMOTIF__) || defined(__WXGTK__) SetCursor(* wxSTANDARD_CURSOR); #endif #ifdef __WXMSW__ -- 2.45.2