mirror of
https://github.com/johrpan/musicus.git
synced 2025-10-26 19:57:25 +01:00
client: Switch to string IDs
This commit is contained in:
parent
157bdb2917
commit
5c3377e246
24 changed files with 249 additions and 363 deletions
|
|
@ -12,7 +12,7 @@ where
|
|||
backend: Rc<Backend>,
|
||||
window: libhandy::Window,
|
||||
callback: F,
|
||||
id: u32,
|
||||
id: String,
|
||||
name_entry: gtk::Entry,
|
||||
}
|
||||
|
||||
|
|
@ -26,8 +26,7 @@ where
|
|||
instrument: Option<Instrument>,
|
||||
callback: F,
|
||||
) -> Rc<Self> {
|
||||
let builder =
|
||||
gtk::Builder::from_resource("/de/johrpan/musicus/ui/instrument_editor.ui");
|
||||
let builder = gtk::Builder::from_resource("/de/johrpan/musicus/ui/instrument_editor.ui");
|
||||
|
||||
get_widget!(builder, libhandy::Window, window);
|
||||
get_widget!(builder, gtk::Button, cancel_button);
|
||||
|
|
@ -39,7 +38,7 @@ where
|
|||
name_entry.set_text(&instrument.name);
|
||||
instrument.id
|
||||
}
|
||||
None => rand::random::<u32>().into(),
|
||||
None => generate_id(),
|
||||
};
|
||||
|
||||
let result = Rc::new(InstrumentEditor {
|
||||
|
|
@ -56,7 +55,7 @@ where
|
|||
|
||||
save_button.connect_clicked(clone!(@strong result => move |_| {
|
||||
let instrument = Instrument {
|
||||
id: result.id,
|
||||
id: result.id.clone(),
|
||||
name: result.name_entry.get_text().to_string(),
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue