mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-07 03:36:44 +02:00
implemented ctrl + w to close peek. (#29895)
* ctrl + w to close peek * Update MainWindow.xaml * Update MainWindow.xaml.cs * Update MainWindow.xaml * Update MainWindow.xaml CloseInvoked * Update MainWindow.xaml.cs EscInvoked -> CloseInvoked * Update MainWindow.xaml.cs XAML Styler extension
This commit is contained in:
@@ -22,7 +22,11 @@
|
||||
<KeyboardAccelerator Key="Up" Invoked="PreviousNavigationInvoked" />
|
||||
<KeyboardAccelerator Key="Right" Invoked="NextNavigationInvoked" />
|
||||
<KeyboardAccelerator Key="Down" Invoked="NextNavigationInvoked" />
|
||||
<KeyboardAccelerator Key="Escape" Invoked="EscKeyInvoked" />
|
||||
<KeyboardAccelerator Key="Escape" Invoked="CloseInvoked" />
|
||||
<KeyboardAccelerator
|
||||
Key="W"
|
||||
Invoked="CloseInvoked"
|
||||
Modifiers="Control" />
|
||||
</Grid.KeyboardAccelerators>
|
||||
|
||||
<Grid.RowDefinitions>
|
||||
|
||||
Reference in New Issue
Block a user