Skip to content

Commit

Permalink
Fix static localized strings
Browse files Browse the repository at this point in the history
  • Loading branch information
cyanfish committed Feb 7, 2025
1 parent 3c64f7f commit 068370e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NAPS2.Lib/EtoForms/Ui/KeyboardShortcutsForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace NAPS2.EtoForms.Ui;
public class KeyboardShortcutsForm : EtoDialogBase
{
private readonly KeyboardShortcutManager _ksm;
private static readonly List<Shortcut> Shortcuts =
private readonly List<Shortcut> Shortcuts =
[
new(UiStrings.ScanWithDefaultProfile, c => c.KeyboardShortcuts.ScanDefault),
new(string.Format(UiStrings.ScanWithProfile, 1), c => c.KeyboardShortcuts.ScanProfile1),
Expand Down

0 comments on commit 068370e

Please sign in to comment.