***
That's the spirit!

Raisjn mentioned that quick exit too.
So I am trying to find the entry points (leaving threading for raisjn.)
Did the usual edits from Post #58.
New edit 0205:
$ nano -l src/remux/launcher.cpy
Code:
...
243 void on_row_selected(string name):
244 CURRENT_APP = name
245 debug "AppDialog:on_row_selected:HIDE"
246 self.hide()
...
264 if bin != "":
265 c->mouse.click += PLS_LAMBDA(auto &ev) {
266 if app_name == APP_NICKEL.name:
267 debug "AppDialog:render_row:CLICK_APP_NICKEL"
268 return
...
$ nano -l src/rmkit/ui/pager.cpy
Code:
...
79 debug "AppDialog:ui::Pager:on_button_selected"
...
Now after running rmkit and swiping up gives messages:
And I get the launcher menu.
Clicked on Nickel menu entry to close the launcher and got:
If I had clicked on any blank area outside the menu area:
And I'm back in Nickel.
If I had swiped up to show the launcher menu and clicked right at the end of the swipe:
And I'm back in Nickel.
If I had clicked on input_demo instead of Nickel in laucher menu:
***