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 ee2fb9e commit 3c20ae1Copy full SHA for 3c20ae1
src/Files.App/Actions/Content/Selection/SelectAllAction.cs
@@ -37,7 +37,7 @@ public bool IsExecutable
37
38
bool isCommandPaletteOpen = page.ToolbarViewModel.IsCommandPaletteOpen;
39
bool isEditing = page.ToolbarViewModel.IsEditModeEnabled;
40
- bool isRenaming = page.SlimContentPage.IsRenamingItem;
+ bool isRenaming = page.SlimContentPage?.IsRenamingItem ?? false;
41
42
return isCommandPaletteOpen || (!isEditing && !isRenaming);
43
}
0 commit comments