summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-02-06 15:52:22 +0000
committerCaolán McNamara <caolanm@redhat.com>2020-02-06 20:39:57 +0100
commitf58074edfc7aa5b22475cd4b2aa2dd0729131fcf (patch)
treeb90d285e59854dda8226f11799b225d97a8c2320
parenta6b697cf87953a5ec31e4920b2e2e40cbb908623 (diff)
tdf#130462 call SetMinOutputSizePixel before SetOutputSizePixel
Change-Id: I04716e91b7c9b5f1e9db1fd175f5dcbe0600bf1d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88115 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r--vcl/source/control/wizardmachine.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/control/wizardmachine.cxx b/vcl/source/control/wizardmachine.cxx
index 6a119d85118b..c9e323620332 100644
--- a/vcl/source/control/wizardmachine.cxx
+++ b/vcl/source/control/wizardmachine.cxx
@@ -420,8 +420,8 @@ namespace vcl
}
}
ImplCalcSize( aDlgSize );
- SetOutputSizePixel( aDlgSize );
SetMinOutputSizePixel( aDlgSize );
+ SetOutputSizePixel( aDlgSize );
}
void RoadmapWizard::StateChanged( StateChangedType nType )