how does one actually quit ? #411
Answered
by
pthom
EtienneParmentier
asked this question in
Q&A
-
|
I am using the python bindings, and I did not find a way to quit the runner loop. def menu(self):
_, selected = imgui.menu_item("Quit", "", False)
if selected:
print("hohoho ! How do I actually quit ?")Is throwing an exception the intended way ? |
Beta Was this translation helpful? Give feedback.
Answered by
pthom
Nov 13, 2025
Replies: 1 comment 1 reply
-
|
hello_imgui.get_runner_params().app_shall_exit= True this answer may be approximate as I am away from my computer |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
EtienneParmentier
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hello_imgui.get_runner_params().app_shall_exit= True
this answer may be approximate as I am away from my computer