From: Unknown (NI) Date: Mon, 13 Mar 2000 02:34:50 +0000 (+0000) Subject: someone forgot to clear the m_needUpdating flag, so Splitter-Windows were always... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/6e395e9c60f126c881e5758320cf20e3d0f675b8 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 --- 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()) {