]> git.saurik.com Git - wxWidgets.git/commitdiff
Put the vertical limit back in for the AutoCOmp list box
authorRobin Dunn <robin@alldunn.com>
Sat, 20 Oct 2001 17:49:06 +0000 (17:49 +0000)
committerRobin Dunn <robin@alldunn.com>
Sat, 20 Oct 2001 17:49:06 +0000 (17:49 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12109 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

contrib/src/stc/PlatWX.cpp
src/stc/PlatWX.cpp

index 3ce7bceafc2d2348faf9170f4eb7f29a19bda96a..65d7de1b454a19f4c145dbac61ce36810108fe5f 100644 (file)
@@ -494,8 +494,8 @@ PRectangle ListBox::GetDesiredRect() {
     rc.left = 0;
     if (sz.x > 400)
         sz.x = 400;
-//      if (sz.y > 150)  // TODO:  Use desiredVisibleRows??
-//          sz.y = 150;  // For now just use the default from GetBestSize
+    if (sz.y > 160)  // TODO:  Use desiredVisibleRows??
+        sz.y = 160;
     rc.right = sz.x;
     rc.bottom = sz.y;
     return rc;
index 3ce7bceafc2d2348faf9170f4eb7f29a19bda96a..65d7de1b454a19f4c145dbac61ce36810108fe5f 100644 (file)
@@ -494,8 +494,8 @@ PRectangle ListBox::GetDesiredRect() {
     rc.left = 0;
     if (sz.x > 400)
         sz.x = 400;
-//      if (sz.y > 150)  // TODO:  Use desiredVisibleRows??
-//          sz.y = 150;  // For now just use the default from GetBestSize
+    if (sz.y > 160)  // TODO:  Use desiredVisibleRows??
+        sz.y = 160;
     rc.right = sz.x;
     rc.bottom = sz.y;
     return rc;