[apps/code] Handle Home event when in the toolbox

If editing a script, the empty space at the end of the script should be
moved to the end of the storage.
This commit is contained in:
Léa Saviot
2020-01-09 09:53:35 +01:00
parent 67f10d0abd
commit 344ea5a67a
6 changed files with 28 additions and 4 deletions

View File

@@ -105,6 +105,10 @@ bool App::handleEvent(Ion::Events::Event event) {
return false;
}
void App::willExitResponderChain(Responder * nextFirstResponder) {
m_menuController.willExitApp();
}
Toolbox * App::toolboxForInputEventHandler(InputEventHandler * textInput) {
return &m_toolbox;
}