X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/125ccda1967a6859ac11beec1a932dc967c22b65..42ef83fa71e14e4fcbb537dd0da7bd9ef9701f49:/src/msw/gauge95.cpp diff --git a/src/msw/gauge95.cpp b/src/msw/gauge95.cpp index d2a7b58b23..6b176c92ec 100644 --- a/src/msw/gauge95.cpp +++ b/src/msw/gauge95.cpp @@ -171,10 +171,10 @@ wxSize wxGauge95::DoGetBestSize() const { // VZ: no idea where does 28 come from, it was there before my changes and // as nobody ever complained I guess we can leave it... - if (HasFlag(wxGA_HORIZONTAL)) - return wxSize(100, 28); + if (HasFlag(wxGA_VERTICAL)) + return wxSize(28, 100); else - return wxSize(28,100); + return wxSize(100, 28); } // ----------------------------------------------------------------------------