From 9de16f8af326af62fa98a0dbdfcc9d5e1b23ec24 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 2 Aug 2014 23:03:29 +0000 Subject: [PATCH] Don't offer to remove a recent menu item if the list is frozen --- BizHawk.Client.EmuHawk/Extensions/ToolExtensions.cs | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/BizHawk.Client.EmuHawk/Extensions/ToolExtensions.cs b/BizHawk.Client.EmuHawk/Extensions/ToolExtensions.cs index 1e4802170e..15e23a6d43 100644 --- a/BizHawk.Client.EmuHawk/Extensions/ToolExtensions.cs +++ b/BizHawk.Client.EmuHawk/Extensions/ToolExtensions.cs @@ -53,10 +53,17 @@ namespace BizHawk.Client.EmuHawk.ToolExtensions public static void HandleLoadError(this RecentFiles recent, string path) { GlobalWin.Sound.StopSound(); - var result = MessageBox.Show("Could not open " + path + "\nRemove from list?", "File not found", MessageBoxButtons.YesNo, MessageBoxIcon.Error); - if (result == DialogResult.Yes) + if (recent.Frozen) { - recent.Remove(path); + var result = MessageBox.Show("Could not open " + path, "File not found", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + else + { + var result = MessageBox.Show("Could not open " + path + "\nRemove from list?", "File not found", MessageBoxButtons.YesNo, MessageBoxIcon.Error); + if (result == DialogResult.Yes) + { + recent.Remove(path); + } } GlobalWin.Sound.StartSound();