Skip to content

Commit

Permalink
add ctrl+w to exit app #1667
Browse files Browse the repository at this point in the history
  • Loading branch information
d2phap committed Oct 22, 2023
1 parent e22c15c commit 601ebb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion v9/ImageGlass/FrmMain/FrmMain.Configs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public partial class FrmMain
{ nameof(MnuAbout), new() { new (Keys.F1) } },

{ nameof(MnuSettings), new() { new (Keys.Control | Keys.Oemcomma) } }, // Ctrl+,
{ nameof(MnuExit), new() { new (Keys.Escape) } },
{ nameof(MnuExit), new() { new (Keys.Escape), new (Keys.Control | Keys.W) } },
};


Expand Down

0 comments on commit 601ebb5

Please sign in to comment.