From 6e395e9c60f126c881e5758320cf20e3d0f675b8 Mon Sep 17 00:00:00 2001 From: "Unknown (NI)" Date: Mon, 13 Mar 2000 02:34:50 +0000 Subject: [PATCH] someone forgot to clear the m_needUpdating flag, so Splitter-Windows were always redrawn after the first sash move in the OnIdle function, even after the dragging was over\! git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6642 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/splitter.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/generic/splitter.cpp b/src/generic/splitter.cpp index 871a443c0e..e6a00ded5e 100644 --- a/src/generic/splitter.cpp +++ b/src/generic/splitter.cpp @@ -266,6 +266,7 @@ void wxSplitterWindow::OnMouseEvent(wxMouseEvent& event) } SizeWindows(); + m_needUpdating = FALSE; } // left up && dragging else if (event.Moving() && !event.Dragging()) {