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
Follow-on from #3463
Attempt after/with #2123
Good low-priority rainy-day/jetlag activity.
Add mutations to cylc monitor e.g. trigger task:
cylc monitor
urwin
class MonitorTreeBrowser: def menu(self): overlay = urwid.Overlay( urwid.AttrMap( urwid.Padding( urwid.ListBox( urwid.SimpleFocusListWalker([ urwid.Text('Hello Menu!'), urwid.Divider(), urwid.AttrMap( urwid.Button('Abc'), 'button', focus_map='reversed' ), urwid.AttrMap( urwid.Button('Bcd'), 'button', focus_map='reversed' ) ]) ), left=2, right=2 ), 'menu' ), self.loop.widget, align='center', width=('relative', 60), valign='middle', height=('relative', 60), min_width=20, min_height=5 ) self.loop.widget = overlay def unhandled_input(self, k): if k in ('q','Q'): raise urwid.ExitMainLoop() if k == 'a': return self.menu()
Pull requests welcome!
The text was updated successfully, but these errors were encountered:
Closed by #3557
Sorry, something went wrong.
No branches or pull requests
Follow-on from #3463
Attempt after/with #2123
Good low-priority rainy-day/jetlag activity.
Add mutations to
cylc monitor
e.g. trigger task:urwin
example:Pull requests welcome!
The text was updated successfully, but these errors were encountered: