Skip to content

Commit

Permalink
Merge pull request #523 from bburan/enaml-undock-bug
Browse files Browse the repository at this point in the history
Fix bug in undocking items from a tab layout
  • Loading branch information
MatthieuDartiailh committed May 3, 2023
2 parents 8c2372a + 21296f7 commit 724c3ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion enaml/qt/docking/q_dock_tab_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ def mouseMoveEvent(self, event):
)
QApplication.sendEvent(self, evt)
container = self.parent().widget(self.currentIndex())
container.untab(gpos())
container.untab(gpos)
self._has_mouse = False

def mouseReleaseEvent(self, event):
Expand Down

0 comments on commit 724c3ee

Please sign in to comment.