summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--chart2/source/controller/dialogs/tp_TitleRotation.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/chart2/source/controller/dialogs/tp_TitleRotation.cxx b/chart2/source/controller/dialogs/tp_TitleRotation.cxx
index 32510374aa33..d23e393d5f13 100644
--- a/chart2/source/controller/dialogs/tp_TitleRotation.cxx
+++ b/chart2/source/controller/dialogs/tp_TitleRotation.cxx
@@ -62,10 +62,10 @@ SchAlignmentTabPage::SchAlignmentTabPage(weld::Container* pPage, weld::DialogCon
IMPL_LINK_NOARG(SchAlignmentTabPage, StackedToggleHdl, weld::ToggleButton&, void)
{
bool bActive = m_xCbStacked->get_active();
- m_xNfRotate->set_sensitive(bActive);
- m_xCtrlDialWin->set_sensitive(bActive);
+ m_xNfRotate->set_sensitive(!bActive);
+ m_xCtrlDialWin->set_sensitive(!bActive);
m_xCtrlDial->StyleUpdated();
- m_xFtRotate->set_sensitive(bActive);
+ m_xFtRotate->set_sensitive(!bActive);
}
SchAlignmentTabPage::~SchAlignmentTabPage()