mirror of
https://github.com/meshtastic/firmware.git
synced 2025-10-28 07:13:25 +00:00
Reword menus to better reflect actions
This commit is contained in:
parent
974b3e6133
commit
541e050e40
@ -439,11 +439,18 @@ void menuHandler::messageResponseMenu()
|
||||
|
||||
// Only show Dismiss All in View All mode
|
||||
if (mode == graphics::MessageRenderer::ThreadMode::ALL) {
|
||||
optionsArray[options] = "Dismiss All";
|
||||
#if defined(M5STACK_UNITC6L)
|
||||
optionsArray[options] = "Delete All";
|
||||
#else
|
||||
optionsArray[options] = "Delete All Threads";
|
||||
#endif
|
||||
optionsEnumArray[options++] = DismissAll;
|
||||
}
|
||||
|
||||
optionsArray[options] = "Dismiss Oldest";
|
||||
#if defined(M5STACK_UNITC6L)
|
||||
optionsArray[options] = "Delete Oldest";
|
||||
#else
|
||||
optionsArray[options] = "Delete Oldest Message";
|
||||
#endif
|
||||
optionsEnumArray[options++] = DismissOldest;
|
||||
|
||||
#ifdef HAS_I2S
|
||||
|
||||
Loading…
Reference in New Issue
Block a user