From 8565dd31a9cc9b284601564671d64f9e2fc39193 Mon Sep 17 00:00:00 2001 From: Michael Mallan Date: Tue, 11 Feb 2025 10:04:24 +0000 Subject: [PATCH] gui(installer): widen button to fit text on single line --- liana-gui/src/installer/view/editor/template/custom.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/liana-gui/src/installer/view/editor/template/custom.rs b/liana-gui/src/installer/view/editor/template/custom.rs index 24cc011d6..35fe241bc 100644 --- a/liana-gui/src/installer/view/editor/template/custom.rs +++ b/liana-gui/src/installer/view/editor/template/custom.rs @@ -184,7 +184,7 @@ pub fn custom_template<'a>( Row::new() .push( button::secondary(Some(icon::plus_icon()), "Add recovery option") - .width(Length::Fixed(200.0)) + .width(Length::Fixed(210.0)) .on_press(Message::DefineDescriptor( message::DefineDescriptor::AddRecoveryPath, )),