Skip to content

Commit

Permalink
Should fix #2364
Browse files Browse the repository at this point in the history
Possible fix for #2364
  • Loading branch information
infinity77 committed Sep 5, 2024
1 parent a87b028 commit 6ae09a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wx/lib/agw/aui/framemanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -9370,7 +9370,7 @@ def OnMotion_DragFloatingPane(self, eventOrPt):

notebookRoot = GetNotebookRoot(self._panes, paneInfo.notebook_id)

if not notebookRoot or not notebookRoot.IsDocked():
if not notebookRoot or not notebookRoot.IsDocked() or not notebookRoot.IsShown():
continue

rc = paneInfo.window.GetScreenRect()
Expand Down

0 comments on commit 6ae09a2

Please sign in to comment.