diff options
author | Caolán McNamara <caolanm@redhat.com> | 2023-04-24 15:10:32 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2023-04-25 10:05:51 +0200 |
commit | bff4282e1c0c7c1f32b93cf5175a721c8226d5de (patch) | |
tree | 9371d3a7ce2a82c96cdce7b5421d72a05c5f50e8 /cui/uiconfig | |
parent | b3d6c521c1e1fc6a1e84940c19cb2e18157e877f (diff) |
Resolves: tdf#154958 add an empty spin button to use for the unused case
instead of reusing the percentage one, which will set its min value
under gtk
Change-Id: I342f8f0588574c45c5752964b95232e419f752ab
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150943
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'cui/uiconfig')
-rw-r--r-- | cui/uiconfig/ui/paraindentspacing.ui | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/cui/uiconfig/ui/paraindentspacing.ui b/cui/uiconfig/ui/paraindentspacing.ui index f58d24ae0de2..a11482a8b58a 100644 --- a/cui/uiconfig/ui/paraindentspacing.ui +++ b/cui/uiconfig/ui/paraindentspacing.ui @@ -2,6 +2,11 @@ <!-- Generated with glade 3.40.0 --> <interface domain="cui"> <requires lib="gtk+" version="3.20"/> + <object class="GtkAdjustment" id="adjustment1"> + <property name="upper">100</property> + <property name="step-increment">1</property> + <property name="page-increment">10</property> + </object> <object class="GtkAdjustment" id="adjustmentED_DIST"> <property name="upper">9999</property> <property name="step-increment">1</property> @@ -442,6 +447,22 @@ <property name="position">1</property> </packing> </child> + <child> + <object class="GtkSpinButton" id="spinED_BLANK"> + <property name="visible">True</property> + <property name="sensitive">False</property> + <property name="can-focus">True</property> + <property name="activates-default">True</property> + <property name="truncate-multiline">True</property> + <property name="adjustment">adjustment1</property> + <property name="digits">1</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">2</property> + </packing> + </child> </object> <packing> <property name="left-attach">1</property> @@ -520,6 +541,7 @@ <widget name="spinED_BOTTOMDIST"/> <widget name="spinED_LINEDISTPERCENT"/> <widget name="spinED_LINEDISTMETRIC"/> + <widget name="spinED_BLANK"/> </widgets> </object> </interface> |