What is the reason for screen.widgets
removed?
#1858
-
In my opinion, """Refresh widgets in current screen only."""
for widget in self.screen.widgets:
widget.do_custom_refresh() At this point there is no need to focus on background screen widgets. |
Beta Was this translation helpful? Give feedback.
Answered by
willmcgugan
Feb 22, 2023
Replies: 1 comment
-
You can do |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
tsingwang
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can do
for widget in self.screen.query("*")
to get all widgets.