Allow larger separators
This commit is contained in:
parent
c4923b57f2
commit
52b578e6eb
|
@ -41,7 +41,7 @@ Control how focus is given to terminals. 'click' means the focus only moves to a
|
||||||
Default value: \fBclick\fR
|
Default value: \fBclick\fR
|
||||||
.TP
|
.TP
|
||||||
.B handle_size
|
.B handle_size
|
||||||
Controls the width of the separator between terminals. Anything outside the range 0-5 (inclusive) will be ignored and use your default theme value.
|
Controls the width of the separator between terminals. Anything outside the range 0-20 (inclusive) will be ignored and use your default theme value.
|
||||||
Default value: \fB-1\fR
|
Default value: \fB-1\fR
|
||||||
.TP
|
.TP
|
||||||
.B geometry_hinting
|
.B geometry_hinting
|
||||||
|
|
|
@ -296,7 +296,7 @@
|
||||||
</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">5</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>
|
||||||
|
|
|
@ -1036,8 +1036,8 @@ class PrefsEditor:
|
||||||
"""Handle size changed"""
|
"""Handle size changed"""
|
||||||
value = widget.get_value() # This one is rounded according to the UI.
|
value = widget.get_value() # This one is rounded according to the UI.
|
||||||
value = int(value) # Cast to int.
|
value = int(value) # Cast to int.
|
||||||
if value > 5:
|
if value > 20:
|
||||||
value = 5
|
value = 20
|
||||||
self.config['handle_size'] = value
|
self.config['handle_size'] = value
|
||||||
self.config.save()
|
self.config.save()
|
||||||
|
|
||||||
|
|
|
@ -373,7 +373,7 @@ class Terminator(Borg):
|
||||||
Gdk.Screen.get_default(),
|
Gdk.Screen.get_default(),
|
||||||
self.style_provider)
|
self.style_provider)
|
||||||
self.style_provider = None
|
self.style_provider = None
|
||||||
if self.config['handle_size'] in xrange(0, 6):
|
if self.config['handle_size'] in xrange(0, 21):
|
||||||
css = """
|
css = """
|
||||||
GtkPaned {
|
GtkPaned {
|
||||||
-GtkPaned-handle-size: %s
|
-GtkPaned-handle-size: %s
|
||||||
|
|
Loading…
Reference in New Issue