From 064194df3da32ef113dd737bb96eddedbbee2e46 Mon Sep 17 00:00:00 2001 From: lashman Date: Fri, 6 Mar 2026 15:12:06 +0200 Subject: [PATCH] Fix imported presets not persisting, remove duplicate help handler --- pixstrip-gtk/src/app.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/pixstrip-gtk/src/app.rs b/pixstrip-gtk/src/app.rs index a916c2e..567747d 100644 --- a/pixstrip-gtk/src/app.rs +++ b/pixstrip-gtk/src/app.rs @@ -1990,6 +1990,7 @@ fn import_preset(window: &adw::ApplicationWindow, ui: &WizardUi) { match store.import_from_file(&path) { Ok(preset) => { let msg = format!("Imported preset: {}", preset.name); + let _ = store.save(&preset); let toast = adw::Toast::new(&msg); ui.toast_overlay.add_toast(toast); }