Skip to content

Commit

Permalink
Merge pull request #2599 from infinity77/patch-3
Browse files Browse the repository at this point in the history
Possible fix for #2364
  • Loading branch information
swt2c committed Sep 5, 2024
2 parents 85069e9 + 6ae09a2 commit 14b6e5d
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 14b6e5d

Please sign in to comment.