We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Operating system: MacOS 13.2.1 wxPython version & source: 4.2.0 Python version & source: 3.9.5
Description of the problem: As shown in the following example, the center docking guide close to the bottom is not valid.
Looks like the issue comes from the following line (as it doesn't check if the notebookRoot is shown).
notebookRoot
Phoenix/wx/lib/agw/aui/framemanager.py
Line 9372 in 2f2624b
After change it to the following line, the ghost docking guide will not show.
ghost
if not notebookRoot or not notebookRoot.IsDocked() or not notebookRoot.IsShown():
The text was updated successfully, but these errors were encountered:
6ae09a2
Merge pull request #2599 from infinity77/patch-3
14b6e5d
Possible fix for #2364
Successfully merging a pull request may close this issue.
Operating system: MacOS 13.2.1
wxPython version & source: 4.2.0
Python version & source: 3.9.5
Description of the problem:
As shown in the following example, the center docking guide close to the bottom is not valid.
Looks like the issue comes from the following line (as it doesn't check if the
notebookRoot
is shown).Phoenix/wx/lib/agw/aui/framemanager.py
Line 9372 in 2f2624b
After change it to the following line, the
ghost
docking guide will not show.The text was updated successfully, but these errors were encountered: