summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-02-06 15:52:22 +0000
committerXisco Faulí <xiscofauli@libreoffice.org>2020-02-07 19:40:45 +0100
commitc852f0e4ac4cee2a1b69ff8b1c5cab6633664098 (patch)
treeea7ea14f8ff0dd2799fc2be5a975f24c5baf7db7 /vcl
parent7efd182997cb29ed4820145efc99a6c18e2c3303 (diff)
tdf#130462 call SetMinOutputSizePixel before SetOutputSizePixel
Change-Id: I04716e91b7c9b5f1e9db1fd175f5dcbe0600bf1d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88116 Tested-by: Jenkins Reviewed-by: Xisco Faulí <xiscofauli@libreoffice.org>
Diffstat (limited to 'vcl')
-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 2fced940867e..57890c45a070 100644
--- a/vcl/source/control/wizardmachine.cxx
+++ b/vcl/source/control/wizardmachine.cxx
@@ -480,8 +480,8 @@ namespace vcl
}
}
ImplCalcSize( aDlgSize );
- SetOutputSizePixel( aDlgSize );
SetMinOutputSizePixel( aDlgSize );
+ SetOutputSizePixel( aDlgSize );
}
void RoadmapWizard::StateChanged( StateChangedType nType )