From ef55e8f01e65f67faff5bd2f07c2c1302d562dd9 Mon Sep 17 00:00:00 2001 From: Michael Mallan Date: Thu, 7 Nov 2024 09:55:51 +0000 Subject: [PATCH] gui(installer): list wallets using secondary buttons --- gui/src/installer/view/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/gui/src/installer/view/mod.rs b/gui/src/installer/view/mod.rs index fdc58113..e42663a5 100644 --- a/gui/src/installer/view/mod.rs +++ b/gui/src/installer/view/mod.rs @@ -60,6 +60,7 @@ pub fn import_wallet_or_descriptor<'a>( for (i, wallet) in wallets.into_iter().enumerate() { col_wallets = col_wallets.push( Button::new(h5_regular(wallet).width(Length::Fill)) + .style(theme::Button::Secondary) .padding(10) .on_press(Message::Select(i)), );