summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sc/source/ui/condformat/condformatdlgentry.cxx10
1 files changed, 9 insertions, 1 deletions
diff --git a/sc/source/ui/condformat/condformatdlgentry.cxx b/sc/source/ui/condformat/condformatdlgentry.cxx
index 1588bc4b71d6..75fec8c3b4b8 100644
--- a/sc/source/ui/condformat/condformatdlgentry.cxx
+++ b/sc/source/ui/condformat/condformatdlgentry.cxx
@@ -910,12 +910,20 @@ IMPL_LINK( ScColorScale3FrmtEntry, EntryTypeHdl, ListBox*, pBox )
IMPL_LINK_NOARG( ScConditionFrmtEntry, ConditionTypeSelectHdl )
{
- if(maLbCondType.GetSelectEntryPos() == 6 || maLbCondType.GetSelectEntryPos() == 7)
+ sal_Int32 nSelectPos = maLbCondType.GetSelectEntryPos();
+ if(nSelectPos == 6 || nSelectPos == 7)
{
+ maEdVal1.Show();
maEdVal2.Show();
}
+ else if(nSelectPos == 8 || nSelectPos == 9)
+ {
+ maEdVal2.Hide();
+ maEdVal1.Hide();
+ }
else
{
+ maEdVal1.Show();
maEdVal2.Hide();
}