From 1eab96591326ea3ed7476374728c69439c95916d Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 15 Sep 2008 00:19:41 +0000 Subject: [PATCH] fix drawing of the column move hint when the grid is scrolled to the right (#9776) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55631 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/grid.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/generic/grid.cpp b/src/generic/grid.cpp index a09bdeacfe..f3e87515e5 100644 --- a/src/generic/grid.cpp +++ b/src/generic/grid.cpp @@ -5580,6 +5580,7 @@ void wxGrid::ProcessColLabelMouseEvent( wxMouseEvent& event ) if ( markerX != m_dragLastPos ) { wxClientDC dc( m_colLabelWin ); + DoPrepareDC(dc); int cw, ch; m_colLabelWin->GetClientSize( &cw, &ch ); -- 2.47.2