From f83eb38342ba2b583627eae79eddb1b2167f1a4e Mon Sep 17 00:00:00 2001 From: alltheseas <64376233+alltheseas@users.noreply.github.com> Date: Fri, 18 Oct 2024 12:11:32 -0500 Subject: [PATCH] Update account_login_view.rs Changed "enter your key here" to include specific reference to npub, nsec, and nip05 as to show login options to the notedeck customer. New text: "Enter your public key (npub, nip05), or private key (nsec) here..." --- src/ui/account_login_view.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/account_login_view.rs b/src/ui/account_login_view.rs index 8e1b7ab..00f06f0 100644 --- a/src/ui/account_login_view.rs +++ b/src/ui/account_login_view.rs @@ -130,7 +130,7 @@ fn login_textedit(manager: &mut LoginState) -> TextEdit { manager.get_login_textedit(|text| { egui::TextEdit::singleline(text) .hint_text( - RichText::new("Your key here...").text_style(NotedeckTextStyle::Body.text_style()), + RichText::new("Enter your public key (npub, nip05), or private key (nsec) here...").text_style(NotedeckTextStyle::Body.text_style()), ) .vertical_align(Align::Center) .min_size(Vec2::new(0.0, 40.0))