From 15f4dc1ed145e49f52576c0aaabd0608847c698f Mon Sep 17 00:00:00 2001 From: Thomas Ballivet Date: Tue, 6 May 2025 20:33:37 +0200 Subject: [PATCH] fix: set "Go to replacement" as primary --- liana-gui/src/app/view/transactions.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/liana-gui/src/app/view/transactions.rs b/liana-gui/src/app/view/transactions.rs index fc373c2e..7116a0e6 100644 --- a/liana-gui/src/app/view/transactions.rs +++ b/liana-gui/src/app/view/transactions.rs @@ -291,7 +291,7 @@ pub fn create_rbf_modal<'a>( })) .push_maybe(replacement_txid.map(|id| { Row::new().push( - button::secondary(None, "Go to replacement") + button::primary(None, "Go to replacement") .width(Length::Fixed(200.0)) .on_press(Message::Menu(Menu::PsbtPreSelected(id))), )