diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-03-04 10:30:19 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-03-04 12:37:06 +0100 |
commit | 1e4e57afb50f25b5b7c4f24b3fb4d96c71e25b92 (patch) | |
tree | 4f801c2004dda3a9ba943407cc311742fdd5b103 /cui | |
parent | a8a5fc175a8af2bf3750497d7ebe2c8ea9176981 (diff) |
tdf#131111 we want a min of 0 not 1 for this formatting spinbox
Change-Id: I4915bc5ecf854e8ac76748f3af204b0eab5d2ff8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89952
Tested-by: Caolán McNamara <caolanm@redhat.com>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'cui')
-rw-r--r-- | cui/uiconfig/ui/spinbox.ui | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/cui/uiconfig/ui/spinbox.ui b/cui/uiconfig/ui/spinbox.ui index 0618f37135cd..24e0095566ab 100644 --- a/cui/uiconfig/ui/spinbox.ui +++ b/cui/uiconfig/ui/spinbox.ui @@ -2,6 +2,11 @@ <!-- Generated with glade 3.22.1 --> <interface domain="cui"> <requires lib="gtk+" version="3.18"/> + <object class="GtkAdjustment" id="adjustment1"> + <property name="upper">100000</property> + <property name="step_increment">1</property> + <property name="page_increment">10</property> + </object> <object class="GtkDialog" id="SpinDialog"> <property name="can_focus">False</property> <property name="type_hint">dialog</property> @@ -51,7 +56,6 @@ <property name="hexpand">True</property> <property name="vexpand">True</property> <property name="adjustment">adjustment1</property> - <property name="value">1</property> </object> <packing> <property name="expand">False</property> @@ -72,11 +76,4 @@ <action-widget response="-5">ok</action-widget> </action-widgets> </object> - <object class="GtkAdjustment" id="adjustment1"> - <property name="lower">1</property> - <property name="upper">100000</property> - <property name="value">1</property> - <property name="step_increment">1</property> - <property name="page_increment">10</property> - </object> </interface> |