From 3cac4ac95a9793ad13ff510412f00902c7f32a8a Mon Sep 17 00:00:00 2001 From: Robert Roebling Date: Sat, 21 Jun 2003 14:04:21 +0000 Subject: [PATCH] Small fix for splitterwindow (no longer wrong cursor in nested scrolled window). git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@21281 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/splitter.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/generic/splitter.cpp b/src/generic/splitter.cpp index 93a7e53b41..4005998052 100644 --- a/src/generic/splitter.cpp +++ b/src/generic/splitter.cpp @@ -276,10 +276,14 @@ void wxSplitterWindow::OnMouseEvent(wxMouseEvent& event) else if ((event.Moving() || event.Leaving() || event.Entering()) && (m_dragMode == wxSPLIT_DRAG_NONE)) { // Just change the cursor as required - if ( SashHitTest(x, y) ) + if ( !event.Leaving() && SashHitTest(x, y) ) + { SetResizeCursor(); + } else + { SetCursor(* wxSTANDARD_CURSOR); + } } else if (event.Dragging() && (m_dragMode == wxSPLIT_DRAG_DRAGGING)) {