[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.2' - chart2/source

Henry Castro (via logerrit) logerrit at kemper.freedesktop.org
Wed Nov 13 09:56:57 UTC 2019


 chart2/source/controller/dialogs/dlg_CreationWizard.cxx |    4 ++++
 1 file changed, 4 insertions(+)

New commits:
commit c8822da749e3720ad99f21ea9bb7a0b035a4b859
Author:     Henry Castro <hcastro at collabora.com>
AuthorDate: Wed Oct 2 16:19:34 2019 -0400
Commit:     Tor Lillqvist <tml at collabora.com>
CommitDate: Wed Nov 13 10:56:18 2019 +0100

    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>
    Reviewed-on: https://gerrit.libreoffice.org/82519
    Tested-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 60fbf69c289a..1b89b2bae2a7 100644
--- a/chart2/source/controller/dialogs/dlg_CreationWizard.cxx
+++ b/chart2/source/controller/dialogs/dlg_CreationWizard.cxx
@@ -31,7 +31,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