Replies: 2 comments
-
We found the following entries in the FAQ which you may find helpful: Feel free to close this issue if you found an answer in the FAQ. Otherwise, please give us a little time to review. This is an automated reply, generated by FAQtory |
Beta Was this translation helpful? Give feedback.
0 replies
-
In order to help us out, please review the following list when filing issues.
If you aren't able to do this, please use the discussions to ask questions prior to adding an issue. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I just want to pop a couple of screens (more than one, let's say 2), nothing else.
Now this is a painful experience because there is no public API allowing for that.
It appears to be as simple as:
but that's not true, because with every pop_screen, there is ScreenResume message being posted which might result in bugs when something depends on that. It also causes old screens to appear for a moment bug I think it's a regression.
I know about the MODES and they can be useful in some scenarios.
But not everything can be generalized to a mode, and even within a given mode, there may be a need to pop several screens.
This is what I do to achieve it and it is still not ideal because of the regression of the flicker effect:
Also related: #3126 (regression) and #3127
I think it would be really great if:
pop_screen_until(DesiredScreen)
orpop_screen(amount=2)
Beta Was this translation helpful? Give feedback.
All reactions