Skip to content

Commit

Permalink
Show me Again Firmware Checkbox now working
Browse files Browse the repository at this point in the history
  • Loading branch information
jawad111 authored and meee1 committed Feb 19, 2022
1 parent fda1623 commit 08e154e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Common.cs
Expand Up @@ -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;
Expand Down

0 comments on commit 08e154e

Please sign in to comment.