diff --git a/Cargo.lock b/Cargo.lock
index f808700..a124f5c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -192,7 +192,7 @@ dependencies = [
[[package]]
name = "boilr"
-version = "1.7.5"
+version = "1.7.6"
dependencies = [
"base64",
"chrono",
diff --git a/Cargo.toml b/Cargo.toml
index 99a7ae7..0fac2b6 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "boilr"
-version = "1.7.5"
+version = "1.7.6"
[dependencies]
base64 = "^0.13.0"
diff --git a/flatpak/io.github.philipk.boilr.appdata.xml b/flatpak/io.github.philipk.boilr.appdata.xml
index 4123d80..30a25b4 100644
--- a/flatpak/io.github.philipk.boilr.appdata.xml
+++ b/flatpak/io.github.philipk.boilr.appdata.xml
@@ -25,6 +25,13 @@ https://hughsie.github.io/oars/index.html
-->
+
+
+
+ - Fixed a bug where selecting which games to import would not be saved when importing games
+
+
+
diff --git a/src/ui/uiapp.rs b/src/ui/uiapp.rs
index 54086b6..0b340c9 100644
--- a/src/ui/uiapp.rs
+++ b/src/ui/uiapp.rs
@@ -241,6 +241,7 @@ impl App for MyEguiApp {
.clicked()
&& !syncing
{
+ save_settings(&self.settings, &self.platforms);
self.run_sync(false);
}
});