Automatically close figure #313
-
It's possible to automatically close figure after some time showing it? Example: fplt.show() Thanks |
Beta Was this translation helpful? Give feedback.
Answered by
highfestiva
Apr 5, 2022
Replies: 1 comment 1 reply
-
You might be able to do something like this: fplt.timer_callback(fplt.close, 3)
fplt.show() The reason for this roundabout way is how the PyQt event loop works. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
lkries
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You might be able to do something like this:
The reason for this roundabout way is how the PyQt event loop works.