We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c707d7 commit 1d81df8Copy full SHA for 1d81df8
src/Files.App/Actions/Show/ToggleDualPaneAction.cs
@@ -14,6 +14,9 @@ public string Label
14
public string Description
15
=> Strings.ToggleDualPaneDescription.GetLocalizedResource();
16
17
+ public HotKey HotKey
18
+ => new(Keys.S, KeyModifiers.CtrlShift);
19
+
20
public bool IsOn
21
=> ContentPageContext.IsMultiPaneActive;
22
src/Files.App/Actions/Show/ToggleFilterHeaderAction.cs
@@ -17,6 +17,9 @@ public string Description
public RichGlyph Glyph
=> new(themedIconStyle: "App.ThemedIcons.Filter");
+ => new(Keys.F, KeyModifiers.CtrlShift);
23
24
=> generalSettingsService.ShowFilterHeader;
25
0 commit comments