From 413c36f6c10d8e7abd8efbcd668f34de1b3bc194 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Laignel?= Date: Tue, 30 Jan 2024 21:11:16 +0100 Subject: [PATCH] ui: enlarge program name input text --- src/ui/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/app.rs b/src/ui/app.rs index 3b0f558..5e54320 100644 --- a/src/ui/app.rs +++ b/src/ui/app.rs @@ -336,7 +336,7 @@ impl Application for App { horizontal_space(Length::Fixed(20f32)), ui::text_input("program name", self.jstation.dsp().name.as_str()) .on_input(Rename) - .width(Length::Fixed(200f32)), + .width(Length::Fixed(300f32)), horizontal_space(Length::Fill), ] .width(widget::DEFAULT_DSP_WIDTH);