Skip to content

Commit 6a335a9

Browse files
authored
Feature: Removed limit that prevented opening more than ten files at the same time (#16139)
1 parent c888068 commit 6a335a9

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/Files.App/Actions/FileSystem/OpenItemAction.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,9 @@ public RichGlyph Glyph
2222
public HotKey HotKey
2323
=> new(Keys.Enter);
2424

25-
private const int MaxOpenCount = 10;
2625

2726
public bool IsExecutable =>
2827
context.HasSelection &&
29-
context.SelectedItems.Count <= MaxOpenCount &&
3028
!(context.ShellPage is ColumnShellPage &&
3129
context.SelectedItem?.PrimaryItemAttribute == StorageItemTypes.Folder);
3230

0 commit comments

Comments
 (0)