Second attempt to move modules down the navigation bar

This commit is contained in:
Jason P
2025-06-25 23:30:16 -05:00
parent 1736db6b56
commit bf5c9f6263
4 changed files with 39 additions and 37 deletions

View File

@@ -334,13 +334,8 @@ int CannedMessageModule::handleInputEvent(const InputEvent *event)
}
// Printable char (ASCII) opens free text compose
if (event->kbchar >= 32 && event->kbchar <= 126) {
runState = CANNED_MESSAGE_RUN_STATE_FREETEXT;
requestFocus();
UIFrameEvent e;
e.action = UIFrameEvent::Action::REGENERATE_FRAMESET;
notifyObservers(&e);
// Immediately process the input in the new state (freetext)
return handleFreeTextInput(event);
LaunchFreetextWithDestination(NODENUM_BROADCAST);
return 1;
}
break;