diff options
author | dipanshu124 <dipanshu@iitk.ac.in> | 2021-02-12 13:54:35 +0530 |
---|---|---|
committer | Heiko Tietze <heiko.tietze@documentfoundation.org> | 2021-02-13 10:25:57 +0100 |
commit | 427deae27d91cb9be0bf1889e2b8b79480adcc35 (patch) | |
tree | fa6733713f9ae8412ae19df469bc616c041d6064 /cui/source/dialogs/about.cxx | |
parent | 3ec8981b4830d646ad73836d9819db4f8342b499 (diff) |
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@documentfoundation.org>
Diffstat (limited to 'cui/source/dialogs/about.cxx')
-rw-r--r-- | cui/source/dialogs/about.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
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; |