Merge pull request #247 from mattrose/fix-horizontal-div-handle

fix the handle on the divider between horizontal panes
This commit is contained in:
Matt Rose 2020-10-16 11:37:42 -04:00 committed by GitHub
commit 80b20a8050
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

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