diff options
author | Moritz Duge <moritz.duge@allotropia.de> | 2024-07-17 17:35:45 +0200 |
---|---|---|
committer | Thorsten Behrens <thorsten.behrens@allotropia.de> | 2024-07-25 10:23:17 +0200 |
commit | f2f1782d23abc48dadc21a82181417c557b2090d (patch) | |
tree | c3f352307d77ba82cd890184d74b6ed8178cab67 /xmlsecurity/uiconfig/ui/selectcertificatedialog.ui | |
parent | 36a589989660338bfaec65736f6a6b5b129d5e37 (diff) |
tdf#161909: Fix resize for cert listings (GtkBox instead of GtkGrid)
- "Certificate Path" dialog (select Mozilla profile for NSS)
- resizing broken since commit db9e1ef04d13ecc1b8f8f156b059173143ea03ea
- also increased default width to account for long filesystem paths
- "Digital Signatures" dialog
- "Select Certificate" dialog
- resizable=True is the default (Glade removes explicit defaults)
- Make long translations wrap instead of being cut.
Glade set expand=False and fill=True as defaults inside GtkBox.
Change-Id: I2d7719e83e5162d06d30e25b3e307fa23e0d605e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/170694
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens <thorsten.behrens@allotropia.de>
Diffstat (limited to 'xmlsecurity/uiconfig/ui/selectcertificatedialog.ui')
-rw-r--r-- | xmlsecurity/uiconfig/ui/selectcertificatedialog.ui | 46 |
1 files changed, 28 insertions, 18 deletions
diff --git a/xmlsecurity/uiconfig/ui/selectcertificatedialog.ui b/xmlsecurity/uiconfig/ui/selectcertificatedialog.ui index c06ce07952d1..12e7754121a9 100644 --- a/xmlsecurity/uiconfig/ui/selectcertificatedialog.ui +++ b/xmlsecurity/uiconfig/ui/selectcertificatedialog.ui @@ -22,7 +22,6 @@ <property name="can-focus">False</property> <property name="border-width">6</property> <property name="title" translatable="yes" context="selectcertificatedialog|SelectCertificateDialog">Select Certificate</property> - <property name="resizable">False</property> <property name="modal">True</property> <property name="type-hint">dialog</property> <child internal-child="vbox"> @@ -88,34 +87,41 @@ </packing> </child> <child> - <!-- n-columns=1 n-rows=6 --> - <object class="GtkGrid" id="grid1"> + <object class="GtkBox" id="box1"> <property name="visible">True</property> <property name="can-focus">False</property> <property name="hexpand">True</property> <property name="vexpand">True</property> - <property name="row-spacing">12</property> - <property name="column-spacing">12</property> + <property name="orientation">vertical</property> + <property name="spacing">12</property> <child> <object class="GtkLabel" id="sign"> <property name="can-focus">False</property> <property name="label" translatable="yes" context="selectcertificatedialog|sign">Select the certificate you want to use for signing:</property> + <property name="wrap">True</property> + <property name="width-chars">56</property> + <property name="max-width-chars">56</property> <property name="xalign">0</property> </object> <packing> - <property name="left-attach">0</property> - <property name="top-attach">0</property> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> </packing> </child> <child> <object class="GtkLabel" id="encrypt"> <property name="can-focus">False</property> <property name="label" translatable="yes" context="selectcertificatedialog|encrypt">Select the certificate you want to use for encryption:</property> + <property name="wrap">True</property> + <property name="width-chars">56</property> + <property name="max-width-chars">56</property> <property name="xalign">0</property> </object> <packing> - <property name="left-attach">0</property> - <property name="top-attach">1</property> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> </packing> </child> <child> @@ -222,8 +228,9 @@ </child> </object> <packing> - <property name="left-attach">0</property> - <property name="top-attach">3</property> + <property name="expand">True</property> + <property name="fill">True</property> + <property name="position">2</property> </packing> </child> <child> @@ -240,8 +247,9 @@ </child> </object> <packing> - <property name="left-attach">0</property> - <property name="top-attach">2</property> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">3</property> </packing> </child> <child> @@ -274,15 +282,16 @@ </child> </object> <packing> - <property name="expand">True</property> + <property name="expand">False</property> <property name="fill">True</property> <property name="position">1</property> </packing> </child> </object> <packing> - <property name="left-attach">0</property> - <property name="top-attach">5</property> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">4</property> </packing> </child> <child> @@ -331,8 +340,9 @@ </child> </object> <packing> - <property name="left-attach">0</property> - <property name="top-attach">4</property> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">5</property> </packing> </child> </object> |