X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/977a3818653022ebb20bcce8cdf7e80fc2ad2954..0ce5a3a853f2eaa7fe58e494aa0605918531ff3b:/src/generic/wizard.cpp diff --git a/src/generic/wizard.cpp b/src/generic/wizard.cpp index 2e3b5dac7b..118c11e2c6 100644 --- a/src/generic/wizard.cpp +++ b/src/generic/wizard.cpp @@ -667,7 +667,11 @@ wxSize wxWizard::GetManualPageSize() const { // default width and height of the page static const int DEFAULT_PAGE_WIDTH = 270; - static const int DEFAULT_PAGE_HEIGHT = 290; + //static const int DEFAULT_PAGE_HEIGHT = 290; + // For compatibility with 2.4: there's too much + // space under the bitmap, probably due to differences in + // the sizer implementation. This makes it reasonable again. + static const int DEFAULT_PAGE_HEIGHT = 270; wxSize totalPageSize(DEFAULT_PAGE_WIDTH,DEFAULT_PAGE_HEIGHT);