[Libreoffice-commits] core.git: sc/source
Jim Raykowski
raykowj at gmail.com
Tue Dec 19 21:25:06 UTC 2017
sc/source/ui/sidebar/NumberFormatPropertyPanel.cxx | 1 +
1 file changed, 1 insertion(+)
New commits:
commit 9e7caee0173c5ec2d8b5cfa6aedfd1c9674d442b
Author: Jim Raykowski <raykowj at gmail.com>
Date: Sun Dec 17 09:42:54 2017 -0900
Uncheck Engineering notation checkbox on Scientific selection
In Calc, the Engineering notation checkbox in the Sidebar Properties
deck Number Format panel can show checked when the cell number format
does not contain engineering notation.
Change-Id: Ia26fc430aecd7af2e0f614bf9314d99f8408e690
Reviewed-on: https://gerrit.libreoffice.org/46650
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Eike Rathke <erack at redhat.com>
diff --git a/sc/source/ui/sidebar/NumberFormatPropertyPanel.cxx b/sc/source/ui/sidebar/NumberFormatPropertyPanel.cxx
index 54c3975c9b08..a0c9eb940f8f 100644
--- a/sc/source/ui/sidebar/NumberFormatPropertyPanel.cxx
+++ b/sc/source/ui/sidebar/NumberFormatPropertyPanel.cxx
@@ -214,6 +214,7 @@ void NumberFormatPropertyPanel::NotifyItemUpdate(
mpBtnThousand->Check(false);
mpBtnEngineering->Show(bIsScientific);
mpBtnEngineering->Enable(bIsScientific);
+ mpBtnEngineering->Check(false);
mpBtnNegRed->Enable();
mpFtDenominator->Show(bIsFraction);
mpEdDenominator->Show(bIsFraction);
More information about the Libreoffice-commits
mailing list