From 12f78f3af79a3a0648479a5d38547ccb253b15ea Mon Sep 17 00:00:00 2001 From: Goblin Date: Thu, 2 Jul 2026 09:56:40 -0400 Subject: [PATCH] send: allow pasting an npub in the Send-to field (issue #1) The recipient field had a QR-scan button but no paste, so on Android there was no reliable way to paste an npub. Add the paste button (same one the slatepack field uses). --- src/gui/views/goblin/send.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/views/goblin/send.rs b/src/gui/views/goblin/send.rs index ec8e0b1..db1db31 100644 --- a/src/gui/views/goblin/send.rs +++ b/src/gui/views/goblin/send.rs @@ -424,6 +424,7 @@ impl SendFlow { .hint_text(t!("goblin.send.search_hint")) .text_color(t.surface_text) .body() + .paste() .scan_qr(); te.ui(ui, &mut search, cb); // scan_qr() already starts the camera on tap.