Add 'wide_handle' property to allow you to paste from the first column to the right of a vertically split window
This commit is contained in:
parent
195833ab5b
commit
da9b5d49c1
|
@ -507,6 +507,7 @@ class HPaned(Paned, Gtk.HPaned):
|
||||||
"""Class initialiser"""
|
"""Class initialiser"""
|
||||||
Paned.__init__(self)
|
Paned.__init__(self)
|
||||||
GObject.GObject.__init__(self)
|
GObject.GObject.__init__(self)
|
||||||
|
self.props.wide_handle = True
|
||||||
self.register_signals(HPaned)
|
self.register_signals(HPaned)
|
||||||
self.cnxids.new(self, 'button-press-event', self.on_button_press)
|
self.cnxids.new(self, 'button-press-event', self.on_button_press)
|
||||||
self.cnxids.new(self, 'button-release-event', self.on_button_release)
|
self.cnxids.new(self, 'button-release-event', self.on_button_release)
|
||||||
|
|
Loading…
Reference in New Issue