summaryrefslogtreecommitdiff
path: root/chart2
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-07-07 15:03:35 +0100
committerAdolfo Jayme Barrientos <fitojb@ubuntu.com>2020-07-08 00:12:26 +0200
commitfaa9ed4c2bc043cb2c483db799c2a696b66a5435 (patch)
tree24c1500df8fafd74de19cdac9a8c5d5cdd99c6ea /chart2
parent654f5316015a38b5c720a93305d21f63aa9697eb (diff)
tdf#134603 [en|dis]able logic reversed
Change-Id: I192b7a6da4bcd311e64a31d9dc2b4c2b422194cb Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98271 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
Diffstat (limited to 'chart2')
-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()