diff --git a/Common.cs b/Common.cs index e0db224bac..2bc03faf94 100644 --- a/Common.cs +++ b/Common.cs @@ -206,7 +206,7 @@ public static DialogResult MessageShowAgain(string title, string promptText) form.Text = title; label.Text = promptText; - chk.Tag = ($"SHOWAGAIN_{title.Replace(" ", "_").Replace('+', '_')}"); + chk.Tag = ($"SHOWAGAIN_{title.Replace(" ", "_").Replace('+', '_').Replace('-', '_').Replace('.', '_')}"); chk.AutoSize = true; chk.Text = Strings.ShowMeAgain; chk.Checked = true;