From eb5fbd5a4837d2fdfc395bf4722ddd7170d18b8e Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Wed, 11 Feb 2026 09:50:27 -0600 Subject: [PATCH] more stroke sizes --- src/ui/song_editor.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/ui/song_editor.rs b/src/ui/song_editor.rs index c4c9350..4432ca3 100644 --- a/src/ui/song_editor.rs +++ b/src/ui/song_editor.rs @@ -687,7 +687,8 @@ impl SongEditor { ) .map(|_| Message::None), ) - .height(250) + .max_height(400) + .height(400) .center_x(Length::Fill) .padding([0, 20]) .clip(true) @@ -1157,7 +1158,10 @@ impl SongEditor { .symbolic(true) ), dropdown( - &["0", "1", "2", "3", "4", "5", "6", "7"], + &[ + "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", + "10", "11", "12", "13", "14", "15" + ], Some(self.stroke_size as usize), |i| Message::UpdateStrokeSize(i as u16), )