[Libreoffice-commits] core.git: cui/source

dipanshu124 (via logerrit) logerrit at kemper.freedesktop.org
Sat Feb 13 09:26:36 UTC 2021


 cui/source/dialogs/about.cxx |    6 ++++++
 1 file changed, 6 insertions(+)

New commits:
commit 427deae27d91cb9be0bf1889e2b8b79480adcc35
Author:     dipanshu124 <dipanshu at iitk.ac.in>
AuthorDate: Fri Feb 12 13:54:35 2021 +0530
Commit:     Heiko Tietze <heiko.tietze at documentfoundation.org>
CommitDate: Sat Feb 13 10:25:57 2021 +0100

    tdf#137779 Add info about Jumbo sheets status into About dialog
    
    Since Jumbo sheets is an experimental feature, user enabling it
    might get problems. It will be good to specify Jumbo sheets status
    (if enabled) in the About Dialog.
    
    Change-Id: I1238d15ea8e32a418754b4323ba9771b63337301
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110800
    Tested-by: Jenkins
    Reviewed-by: Heiko Tietze <heiko.tietze at documentfoundation.org>

diff --git a/cui/source/dialogs/about.cxx b/cui/source/dialogs/about.cxx
index d4e3d80de876..12d1927b5ccd 100644
--- a/cui/source/dialogs/about.cxx
+++ b/cui/source/dialogs/about.cxx
@@ -237,6 +237,12 @@ OUString AboutDialog::GetMiscString() {
     aCalcMode += "threaded";
   }
 
+  if (officecfg::Office::Calc::Defaults::Sheet::JumboSheets::get())
+  {
+    if (!aCalcMode.endsWith(" "))
+      aCalcMode += " ";
+    aCalcMode += "Jumbo";
+  }
   sMisc += aCalcMode;
 
   return sMisc;


More information about the Libreoffice-commits mailing list