diff options
author | Jim Raykowski <raykowj@gmail.com> | 2017-12-07 22:52:00 -0900 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2017-12-15 17:22:05 +0100 |
commit | 5769b301dc307d2019faf1a480b930182d03ba54 (patch) | |
tree | 4fe1835c46a45dd7058786f00dd074f1a2d2cbf0 | |
parent | 9e0ab4e19dc47953fe5ddff4b0af83b652d4f09b (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>
(cherry picked from commit eee645a4c281a99247fa7ae6e34711283156c614)
Reviewed-on: https://gerrit.libreoffice.org/46540
-rw-r--r-- | sc/source/ui/sidebar/NumberFormatPropertyPanel.cxx | 1 |
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(); |