ui: default send picker to opportunistic

Normal SEND and Enter already use opportunistic LXMF delivery. Make the long-press send-mode picker open on Send normally instead of Send as link so LoRa users do not accidentally choose link delivery as the apparent default.

This matches the field test result where short opportunistic LoRa messages worked bidirectionally, while link establishment from Ratspeak to rsDeck could queue after restarts/config changes.
This commit is contained in:
DeFiDude
2026-06-26 15:14:24 -06:00
parent a2aad03a39
commit b3d03e204a
+1 -1
View File
@@ -714,7 +714,7 @@ bool LvMessageView::handleLongPress() {
void LvMessageView::showSendModeMenu() {
if (_inputText.empty()) return;
hideSendModeMenu();
_sendMenuIdx = 1;
_sendMenuIdx = 0;
_sendOverlay = lv_obj_create(lv_layer_top());
lv_obj_set_size(_sendOverlay, 244, 118);