Skip to content

Commit 31e17fe

Browse files
committed
Fix
1 parent ac460e5 commit 31e17fe

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

src/Files.App/Data/Factories/ContentPageContextFlyoutFactory.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -479,10 +479,8 @@ public static List<ContextMenuFlyoutItemViewModel> GetBaseItemMenuItems(
479479
}.Build(),
480480
new ContextMenuFlyoutItemViewModelBuilder(Commands.CreateAlternateDataStream)
481481
{
482-
IsVisible = UserSettingsService.GeneralSettingsService.ShowCreateAlternateDataStream
483-
&& itemsSelected
484-
&& !currentInstanceViewModel.IsPageTypeRecycleBin
485-
&& !isDriveRoot,
482+
IsVisible = UserSettingsService.GeneralSettingsService.ShowCreateAlternateDataStream &&
483+
Commands.CreateAlternateDataStream.IsExecutable,
486484
}.Build(),
487485
new ContextMenuFlyoutItemViewModelBuilder(Commands.Rename)
488486
{

src/Files.App/Strings/en-US/Resources.resw

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3987,6 +3987,6 @@
39873987
<value>There was an error creating the alternate data stream</value>
39883988
</data>
39893989
<data name="ErrorCreatingDataStreamDescription" xml:space="preserve">
3990-
<value>Please note that alternate data streams only work on drives formatted with NTFS. To resolve this issue, ensure that the drive or partition you are working on is formatted with NTFS.</value>
3990+
<value>Please note that alternate data streams only work on drives formatted for NTFS.</value>
39913991
</data>
39923992
</root>

0 commit comments

Comments
 (0)