]> git.saurik.com Git - wxWidgets.git/commitdiff
fixes for the list ctrl layout
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 24 Aug 2003 22:46:59 +0000 (22:46 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 24 Aug 2003 22:46:59 +0000 (22:46 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23182 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/listbkg.cpp

index 1ac9ecceff55f73eea2dcd0e5b1633a0a72b5bc8..c4c83d0b9157463c49986f413feefae8d5f1429c 100644 (file)
@@ -137,8 +137,8 @@ wxSize wxListbook::GetListSize() const
             wxRect r;
             m_list->GetItemRect(i, r);
 
-            wxCoord w = r.x + r.width,
-                    h = r.y + r.height;
+            wxCoord w = r.width,
+                    h = r.height;
 
             if ( w > widthMax )
                 widthMax = w;
@@ -161,9 +161,9 @@ wxSize wxListbook::GetListSize() const
     }
     else // left/right aligned
     {
-        // +10 is due to an apparent bug in wxListCtrl::GetItemRect() but I
+        // +20 is due to an apparent bug in wxListCtrl::GetItemRect() but I
         // can't fix it there right now so just add a fudge here...
-        size.x = widthMax + 10;
+        size.x = widthMax + 20;
         size.y = sizeClient.y;
 
         if ( heightMax >= sizeClient.y )