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 9ecf257 commit 7fc6344Copy full SHA for 7fc6344
src/Files.App/ViewModels/Layouts/BaseLayoutViewModel.cs
@@ -76,10 +76,10 @@ private void PointerWheelChanged(PointerRoutedEventArgs e)
76
77
// Mouse wheel down
78
if (delta < 0)
79
- Commands.LayoutIncreaseSize.ExecuteAsync();
+ Commands.LayoutDecreaseSize.ExecuteAsync();
80
// Mouse wheel up
81
else if (delta > 0)
82
- Commands.LayoutDecreaseSize.ExecuteAsync();
+ Commands.LayoutIncreaseSize.ExecuteAsync();
83
84
e.Handled = true;
85
}
0 commit comments