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 119f191 commit bf3ececCopy full SHA for bf3ecec
src/Files.App/Actions/Navigation/CloseActivePaneAction.cs
@@ -14,7 +14,7 @@ public string Description
14
=> "CloseActivePaneDescription".GetLocalizedResource();
15
16
public HotKey HotKey
17
- => new(Keys.W, KeyModifiers.CtrlShift);
+ => new(Keys.W, KeyModifiers.CtrlAlt);
18
19
public RichGlyph Glyph
20
=> new(themedIconStyle: "App.ThemedIcons.PanelLeftClose");
src/Files.App/Helpers/Navigation/MultitaskingTabsHelpers.cs
@@ -46,7 +46,7 @@ public static void CloseAllTabs(ITabBar multitaskingControl)
46
if (multitaskingControl is not null)
47
{
48
var tabs = MainPageViewModel.AppInstances;
49
- tabs.ForEach(tab => multitaskingControl.CloseTab(tab));
+ tabs.ToList().ForEach(tab => multitaskingControl.CloseTab(tab));
50
}
51
52
0 commit comments