diff options
author | Serge Krot <Serge.Krot@cib.de> | 2020-06-08 20:13:04 +0200 |
---|---|---|
committer | Thorsten Behrens <Thorsten.Behrens@CIB.de> | 2020-06-09 10:33:30 +0200 |
commit | 3a371da71ab738a99e81e75c736fa5e384ebd9d3 (patch) | |
tree | c71498d620fdd01b4e31a79d3367bdd5192d5b4f /sw | |
parent | 7e4372c8569595adb4ee9ac225ada7f576121c48 (diff) |
tdf#101856 correct Insert bookmark dialog
- left align checkbox "Hide"
- do not resize "Close" button
- place "Close" button at the bottom of the dialog
Change-Id: I57caa83edde2c377dfbf0aaacb60281e4966fbaf
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95855
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/ui/misc/bookmark.cxx | 4 | ||||
-rw-r--r-- | sw/uiconfig/swriter/ui/insertbookmark.ui | 7 |
2 files changed, 8 insertions, 3 deletions
diff --git a/sw/source/ui/misc/bookmark.cxx b/sw/source/ui/misc/bookmark.cxx index 1c67f547558c..29f090f94ff6 100644 --- a/sw/source/ui/misc/bookmark.cxx +++ b/sw/source/ui/misc/bookmark.cxx @@ -343,6 +343,10 @@ SwInsertBookmarkDlg::SwInsertBookmarkDlg(weld::Window* pParent, SwWrtShell& rS, } m_bAreProtected = rSh.getIDocumentSettingAccess().get(DocumentSettingId::PROTECT_BOOKMARKS); + + // disabled until "Hide" flag is not checked + m_xConditionED->set_sensitive(false); + m_xConditionFT->set_sensitive(false); } IMPL_LINK(SwInsertBookmarkDlg, HeaderBarClick, int, nColumn, void) diff --git a/sw/uiconfig/swriter/ui/insertbookmark.ui b/sw/uiconfig/swriter/ui/insertbookmark.ui index f062451af767..8b65bfc619b9 100644 --- a/sw/uiconfig/swriter/ui/insertbookmark.ui +++ b/sw/uiconfig/swriter/ui/insertbookmark.ui @@ -71,9 +71,9 @@ </child> </object> <packing> - <property name="expand">True</property> - <property name="fill">True</property> - <property name="position">6</property> + <property name="expand">False</property> + <property name="fill">False</property> + <property name="position">7</property> </packing> </child> <child> @@ -145,6 +145,7 @@ <property name="can_focus">True</property> <property name="receives_default">False</property> <property name="valign">start</property> + <property name="halign">start</property> <property name="use_underline">True</property> <property name="draw_indicator">True</property> </object> |