]> git.saurik.com Git - wxWidgets.git/commitdiff
Don't change horizontal scroll position needlessly in wxDataViewCtrl.
authorVáclav Slavík <vslavik@fastmail.fm>
Wed, 14 Dec 2011 15:53:28 +0000 (15:53 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Wed, 14 Dec 2011 15:53:28 +0000 (15:53 +0000)
When ScrollTo() or EnsureVisible() was called in the generic
wxDataViewCtrl implementation with unspecified column, horizontal scroll
position was reset to left-most position, which doesn't make much sense.
Instead, leave horizontal position unchanged in this case and only
change it when explicitly requested.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70001 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/datavgen.cpp

index ee37a902266d930aa1d1eea0e8cfece37a612e0b..99763c1787d0c6f139146bcdda8b678c6e8e119f 100644 (file)
@@ -2433,7 +2433,7 @@ void wxDataViewMainWindow::ScrollTo( int rows, int column )
     int x, y;
     m_owner->GetScrollPixelsPerUnit( &x, &y );
     int sy = GetLineStart( rows )/y;
-    int sx = 0;
+    int sx = -1;
     if( column != -1 )
     {
         wxRect rect = GetClientRect();