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 891d867 commit d99037cCopy full SHA for d99037c
src/Files.App/UserControls/Pane/ShelfPane.xaml.cs
@@ -62,7 +62,7 @@ private async void Shelf_Drop(object sender, DragEventArgs e)
62
}
63
64
// ToDo bind to property in view model
65
- EmptyShelfContent.Visibility = ItemsSource.Count != 0 ? Microsoft.UI.Xaml.Visibility.Visible : Microsoft.UI.Xaml.Visibility.Collapsed;
+ EmptyShelfContent.Visibility = ItemsSource.Count == 0 ? Microsoft.UI.Xaml.Visibility.Visible : Microsoft.UI.Xaml.Visibility.Collapsed;
66
67
68
private void ListView_DragItemsStarting(object sender, DragItemsStartingEventArgs e)
0 commit comments