From b3d03e204a3ee228bc9de612d926724db2e9c929 Mon Sep 17 00:00:00 2001 From: DeFiDude <59237470+DeFiDude@users.noreply.github.com> Date: Fri, 26 Jun 2026 15:14:24 -0600 Subject: [PATCH] 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. --- src/ui/screens/LvMessageView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/screens/LvMessageView.cpp b/src/ui/screens/LvMessageView.cpp index 3914178..622d393 100644 --- a/src/ui/screens/LvMessageView.cpp +++ b/src/ui/screens/LvMessageView.cpp @@ -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);