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>
This commit is contained in:
parent
d92463c88a
commit
8daffb60dd
@ -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();
|
||||
|
@ -225,9 +225,11 @@ class SwShdwCursorOptionsTabPage : public SfxTabPage
|
||||
std::unique_ptr<weld::CheckButton> m_xSpacesCB;
|
||||
std::unique_ptr<weld::CheckButton> m_xHSpacesCB;
|
||||
std::unique_ptr<weld::CheckButton> m_xTabCB;
|
||||
std::unique_ptr<weld::Label> m_xTabLabel;
|
||||
std::unique_ptr<weld::CheckButton> m_xBreakCB;
|
||||
std::unique_ptr<weld::CheckButton> m_xCharHiddenCB;
|
||||
std::unique_ptr<weld::CheckButton> m_xBookmarkCB;
|
||||
std::unique_ptr<weld::Label> m_xBookmarkLabel;
|
||||
|
||||
std::unique_ptr<weld::Frame> m_xDirectCursorFrame;
|
||||
std::unique_ptr<weld::CheckButton> m_xOnOffCB;
|
||||
|
@ -185,7 +185,7 @@
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkLabel">
|
||||
<object class="GtkLabel" id="tabs_label">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="label">→</property>
|
||||
@ -207,7 +207,7 @@
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkLabel">
|
||||
<object class="GtkLabel" id="bookmarks_label">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="label">| [ ]</property>
|
||||
|
Loading…
x
Reference in New Issue
Block a user