Revert "modify terminator separater size setting in gui to start from 1"

This reverts commit c8cd50ba9a.
This commit is contained in:
Matt Rose 2023-06-09 23:16:34 -04:00
parent 2285ceb68b
commit 928a3dc5ec
3 changed files with 3 additions and 5 deletions

View File

@ -84,7 +84,7 @@ DEFAULTS = {
'global_config': { 'global_config': {
'dbus' : True, 'dbus' : True,
'focus' : 'click', 'focus' : 'click',
'handle_size' : 1, 'handle_size' : -1,
'geometry_hinting' : False, 'geometry_hinting' : False,
'window_state' : 'normal', 'window_state' : 'normal',
'borderless' : False, 'borderless' : False,

View File

@ -353,9 +353,9 @@
</data> </data>
</object> </object>
<object class="GtkAdjustment" id="adjustment1"> <object class="GtkAdjustment" id="adjustment1">
<property name="lower">1</property> <property name="lower">-1</property>
<property name="upper">20</property> <property name="upper">20</property>
<property name="value">1</property> <property name="value">-1</property>
<property name="step-increment">1</property> <property name="step-increment">1</property>
<property name="page-increment">2</property> <property name="page-increment">2</property>
</object> </object>

View File

@ -1381,8 +1381,6 @@ class PrefsEditor:
value = int(value) # Cast to int. value = int(value) # Cast to int.
if value > 20: if value > 20:
value = 20 value = 20
if value < 1:
value = 1
self.config['handle_size'] = value self.config['handle_size'] = value
self.config.save() self.config.save()
guiget = self.builder.get_object guiget = self.builder.get_object