This commit is contained in:
2025-07-08 22:39:59 +02:00
parent 87f1b56eac
commit 60e73cc0ce
3 changed files with 5 additions and 10 deletions

View File

@@ -1,5 +1,4 @@
mod polygon_draw;
use iced::widget::text_input::Style;
use polygon_draw::Polygon;
mod music;
@@ -10,12 +9,11 @@ use utils::str_to_sec;
use std::fs;
use iced::{Element, window};
use iced::Element;
use iced::{
Font,
font::Family,
widget::{
TextInput, column, text, text_input,
TextInput, column, text,
text_input::{Icon, Side},
},
};
@@ -173,7 +171,7 @@ impl MyApp {
}
}
Message::AddPoint => {
self.music.add_Point(self.current_delta);
self.music.add_point(self.current_delta);
}
}
}