summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Raykowski <raykowj@gmail.com>2017-12-07 22:52:00 -0900
committerEike Rathke <erack@redhat.com>2017-12-15 12:52:23 +0100
commiteee645a4c281a99247fa7ae6e34711283156c614 (patch)
treeccc79935f07992de09b6befb05dc5bc37b7e0f75
parent06c281c20654baaabfdb7080a77a350ca789f9b2 (diff)
tdf#114216 Uncheck Thousands separator on Number category selection
Change-Id: Iaf616379fad1333d63bc397a9fba2220d7bbfc9b Reviewed-on: https://gerrit.libreoffice.org/46072 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Eike Rathke <erack@redhat.com>
-rw-r--r--sc/source/ui/sidebar/NumberFormatPropertyPanel.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/sc/source/ui/sidebar/NumberFormatPropertyPanel.cxx b/sc/source/ui/sidebar/NumberFormatPropertyPanel.cxx
index e52a08e83be5..54c3975c9b08 100644
--- a/sc/source/ui/sidebar/NumberFormatPropertyPanel.cxx
+++ b/sc/source/ui/sidebar/NumberFormatPropertyPanel.cxx
@@ -211,6 +211,7 @@ void NumberFormatPropertyPanel::NotifyItemUpdate(
bool bIsFraction ( nVal == 7 ); // For fraction, Decimal places is replaced by Denominator places
mpBtnThousand->Show(!bIsScientific);
mpBtnThousand->Enable(!bIsScientific);
+ mpBtnThousand->Check(false);
mpBtnEngineering->Show(bIsScientific);
mpBtnEngineering->Enable(bIsScientific);
mpBtnNegRed->Enable();