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:
Matt Rose 2020-08-24 14:41:21 -04:00
parent 195833ab5b
commit da9b5d49c1
1 changed files with 1 additions and 0 deletions

View File

@ -507,6 +507,7 @@ class HPaned(Paned, Gtk.HPaned):
"""Class initialiser"""
Paned.__init__(self)
GObject.GObject.__init__(self)
self.props.wide_handle = True
self.register_signals(HPaned)
self.cnxids.new(self, 'button-press-event', self.on_button_press)
self.cnxids.new(self, 'button-release-event', self.on_button_release)