[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.0' - chart2/source
Henry Castro (via logerrit)
logerrit at kemper.freedesktop.org
Thu Oct 3 09:09:35 UTC 2019
chart2/source/controller/dialogs/dlg_CreationWizard.cxx | 4 ++++
1 file changed, 4 insertions(+)
New commits:
commit 08b683df8ba77fcf105d2925d1badddfbbbb108d
Author: Henry Castro <hcastro at collabora.com>
AuthorDate: Wed Oct 2 16:19:34 2019 -0400
Commit: Tor Lillqvist <tml at collabora.com>
CommitDate: Thu Oct 3 11:08:37 2019 +0200
tdf#127798: ios: change the default page height of the chart wizard dialog
The constant CHART_WIZARD_PAGEHEIGHT value determines the wizard
dialog size, however for a custom theme for IOS those values
have to be adjusted. After reading the WizardDialog implementation,
there is no code related about chart wizard dialog auto-size.
Change-Id: I6219d777bcc51f278ee10d834e8d0fe6c12f7918
Reviewed-on: https://gerrit.libreoffice.org/80087
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice at gmail.com>
Reviewed-by: Tor Lillqvist <tml at collabora.com>
diff --git a/chart2/source/controller/dialogs/dlg_CreationWizard.cxx b/chart2/source/controller/dialogs/dlg_CreationWizard.cxx
index 8cf6e4252c43..df5d578c9d7f 100644
--- a/chart2/source/controller/dialogs/dlg_CreationWizard.cxx
+++ b/chart2/source/controller/dialogs/dlg_CreationWizard.cxx
@@ -30,7 +30,11 @@
#include "DialogModel.hxx"
#define CHART_WIZARD_PAGEWIDTH 250
+#ifdef IOS
+#define CHART_WIZARD_PAGEHEIGHT 200
+#else
#define CHART_WIZARD_PAGEHEIGHT 170
+#endif
using namespace css;
More information about the Libreoffice-commits
mailing list