cui/source/dialogs/about.cxx | 6 ++++++ 1 file changed, 6 insertions(+)
New commits: commit 427deae27d91cb9be0bf1889e2b8b79480adcc35 Author: dipanshu124 <[email protected]> AuthorDate: Fri Feb 12 13:54:35 2021 +0530 Commit: Heiko Tietze <[email protected]> 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 <[email protected]> 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; _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
