diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-11-03 13:13:22 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-11-03 17:16:03 +0100 |
commit | 2359ad3305c20b0654bdb2ff41a4703c833f7734 (patch) | |
tree | ca000c48d09646e2eb7ce3ea38b5bccfa0839c6f | |
parent | 41f1b2bd1deaf67a08de240eb806189e122d9852 (diff) |
Resolves: tdf#136611 chart doesn't support corner style or caps
Change-Id: Ibee5b90fff28504d87462b3839bb58dfc6911a39
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105248
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | svx/source/sidebar/line/LinePropertyPanelBase.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/svx/source/sidebar/line/LinePropertyPanelBase.cxx b/svx/source/sidebar/line/LinePropertyPanelBase.cxx index ea4110dd7219..2c144e48ccd8 100644 --- a/svx/source/sidebar/line/LinePropertyPanelBase.cxx +++ b/svx/source/sidebar/line/LinePropertyPanelBase.cxx @@ -455,8 +455,10 @@ void LinePropertyPanelBase::ActivateControls() { mxGridLineProps->set_sensitive(!mbNoneLineStyle); mxBoxArrowProps->set_sensitive(!mbNoneLineStyle); - mxLineStyleTB->set_item_visible(".uno:LineEndStyle", mbArrowSupported); mxLineStyleTB->set_item_sensitive(".uno:LineEndStyle", !mbNoneLineStyle); + + mxBoxArrowProps->set_visible(mbArrowSupported); + mxLineStyleTB->set_item_visible(".uno:LineEndStyle", mbArrowSupported); } void LinePropertyPanelBase::setMapUnit(MapUnit eMapUnit) |