From e56ed554e3b09e09661c057c5caf0bbda5fb5a3e Mon Sep 17 00:00:00 2001 From: Dirk Hoffmann Date: Sat, 14 Dec 2024 10:17:12 +0100 Subject: [PATCH] Fixed "Insert recent" bug (#816) --- GUI/MyControllerMenu.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GUI/MyControllerMenu.swift b/GUI/MyControllerMenu.swift index d54826590..790e206ba 100644 --- a/GUI/MyControllerMenu.swift +++ b/GUI/MyControllerMenu.swift @@ -713,7 +713,7 @@ extension MyController: NSMenuItemValidation { try self.mm.addMedia(url: url, allowedTypes: [ .D64, .T64, .PRG, .P00, .G64 ], drive: id, - options: [.force]) + options: [.force, .remember]) } catch { self.showAlert(.cantInsert, error: error, async: true)