-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
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
ApplicationWindow isn't cleaning up StatusBarManager #539
Comments
I was debugging an entire day now to find out why my GUI tests in pytest are crashing, until I found out that StatusBarManager is not properly recycled. Then I found this issue :D |
johannesloibl
added a commit
to johannesloibl/pyface
that referenced
this issue
Jul 1, 2022
- Streamline naming of destroy function of StatusBarManager Qt and wx implementation - Add destroying of StatusBarManager when application is destroyed
johannesloibl
added a commit
to johannesloibl/pyface
that referenced
this issue
Jul 1, 2022
corranwebster
pushed a commit
that referenced
this issue
Jul 2, 2022
corranwebster
pushed a commit
that referenced
this issue
Jul 4, 2022
corranwebster
pushed a commit
that referenced
this issue
Jul 11, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Qt
ApplicationWindow
tests are leakingQStatusBar
:ApplicationWindow tests output
In
MApplicationWindow
,MenuBarManager
andToolBarManager
are destroyed but notStatusBarManager
. This can be done viadestroy_status_bar
(qt) orremove_status_bar
(wx).The first step would probably be bringing qt and wx interfaces together and then simply adding a couple lines of code to
MApplicationWindow
.The text was updated successfully, but these errors were encountered: