[Libreoffice-commits] core.git: vcl/source
Caolán McNamara (via logerrit)
logerrit at kemper.freedesktop.org
Thu Feb 6 19:40:30 UTC 2020
vcl/source/control/wizardmachine.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit f58074edfc7aa5b22475cd4b2aa2dd0729131fcf
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Thu Feb 6 15:52:22 2020 +0000
Commit: Caolán McNamara <caolanm at redhat.com>
CommitDate: Thu Feb 6 20:39:57 2020 +0100
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 at redhat.com>
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 )
More information about the Libreoffice-commits
mailing list