mirror of
https://github.com/WarrenHood/MCModpackManager.git
synced 2025-04-29 18:44:58 +01:00
Actually save profile
This commit is contained in:
parent
8b2fc69e1c
commit
9747a41ed2
|
@ -166,6 +166,15 @@ impl Application for ManagerGUI {
|
||||||
} else {
|
} else {
|
||||||
self.userdata
|
self.userdata
|
||||||
.add_profile(self.profile_edit_settings.name.trim(), profile);
|
.add_profile(self.profile_edit_settings.name.trim(), profile);
|
||||||
|
let save_result = self.userdata.save();
|
||||||
|
if let Err(err) = save_result {
|
||||||
|
self.profile_save_error =
|
||||||
|
format!("Unable to save profile: {err:#?}").into();
|
||||||
|
} else {
|
||||||
|
self.current_view = ManagerView::ProfileView {
|
||||||
|
profile: self.profile_edit_settings.name.trim().into(),
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else if let Err(err) = profile {
|
} else if let Err(err) = profile {
|
||||||
self.profile_save_error = err.into();
|
self.profile_save_error = err.into();
|
||||||
|
|
Loading…
Reference in a new issue