From 617845234c4e64e02b47d4e29971b094f38f5281 Mon Sep 17 00:00:00 2001 From: jp1ac4 <121959000+jp1ac4@users.noreply.github.com> Date: Tue, 26 Mar 2024 16:07:56 +0000 Subject: [PATCH] gui: make max tooltip more legible --- gui/src/app/view/spend/mod.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gui/src/app/view/spend/mod.rs b/gui/src/app/view/spend/mod.rs index 4f5ad1e1..39bfc1b4 100644 --- a/gui/src/app/view/spend/mod.rs +++ b/gui/src/app/view/spend/mod.rs @@ -406,8 +406,9 @@ pub fn recipient_view<'a>( checkbox("MAX", is_max_selected, move |_| { CreateSpendMessage::SendMaxToRecipient(index) }), - "Total amount remaining after paying fee and any other recipients", - tooltip::Position::Left, + // Add spaces at end so that text is padded at screen edge. + "Total amount remaining after paying fee and any other recipients ", + tooltip::Position::Bottom, )) .width(Length::Fill), ),