diff options
author | Michael Stahl <Michael.Stahl@cib.de> | 2020-02-12 14:22:18 +0100 |
---|---|---|
committer | Michael Stahl <michael.stahl@cib.de> | 2020-02-13 10:25:21 +0100 |
commit | 8daffb60dd2863878bb04317ca2849d76df01f4b (patch) | |
tree | 46fad4c361dbe31e245c79e3eabbb33ffb54fa1a /sw/source/ui/config/optpage.cxx | |
parent | d92463c88a557eea7a439def39659b1409772583 (diff) |
tdf#45589 sw: fix Formatting Aids options page for Writer/Web
The pre-existing problem of the lone "tab" label was compounded by the
new bookmark label.
There is no Insert->Bookmark in Writer/Web so i guess the Bookmark
checkbox shouldn't be shown.
Change-Id: I5a2348599562bb20d7a8de916d0268a133771a0c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88535
Tested-by: Jenkins
Reviewed-by: Michael Stahl <michael.stahl@cib.de>
Diffstat (limited to 'sw/source/ui/config/optpage.cxx')
-rw-r--r-- | sw/source/ui/config/optpage.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sw/source/ui/config/optpage.cxx b/sw/source/ui/config/optpage.cxx index 637c583db442..91692bb99b01 100644 --- a/sw/source/ui/config/optpage.cxx +++ b/sw/source/ui/config/optpage.cxx @@ -1189,9 +1189,11 @@ SwShdwCursorOptionsTabPage::SwShdwCursorOptionsTabPage(weld::Container* pPage, w , m_xSpacesCB(m_xBuilder->weld_check_button("spaces")) , m_xHSpacesCB(m_xBuilder->weld_check_button("nonbreak")) , m_xTabCB(m_xBuilder->weld_check_button("tabs")) + , m_xTabLabel(m_xBuilder->weld_label("tabs_label")) , m_xBreakCB(m_xBuilder->weld_check_button("break")) , m_xCharHiddenCB(m_xBuilder->weld_check_button("hiddentext")) , m_xBookmarkCB(m_xBuilder->weld_check_button("bookmarks")) + , m_xBookmarkLabel(m_xBuilder->weld_label("bookmarks_label")) , m_xDirectCursorFrame(m_xBuilder->weld_frame("directcrsrframe")) , m_xOnOffCB(m_xBuilder->weld_check_button("cursoronoff")) , m_xDirectCursorFillMode(m_xBuilder->weld_combo_box("cxDirectCursorFillMode")) @@ -1217,8 +1219,10 @@ SwShdwCursorOptionsTabPage::SwShdwCursorOptionsTabPage(weld::Container* pPage, w return; m_xTabCB->hide(); + m_xTabLabel->hide(); m_xCharHiddenCB->hide(); m_xBookmarkCB->hide(); + m_xBookmarkLabel->hide(); m_xDirectCursorFrame->hide(); m_xOnOffCB->hide(); |