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 ad25f27 commit dbe2a96Copy full SHA for dbe2a96
MainDemo.Wpf/Domain/MainWindowViewModel.cs
@@ -262,9 +262,11 @@ private static IEnumerable<DemoItem> GenerateDemoItems(ISnackbarMessageQueue sna
262
DocumentationLink.ApiLink<PackIcon>()
263
},
264
new IconPackViewModel(snackbarMessageQueue))
265
- {
266
- VerticalScrollBarVisibilityRequirement = ScrollBarVisibility.Disabled
267
- };
+ {
+ //The icons view handles its own scrolling
+ HorizontalScrollBarVisibilityRequirement = ScrollBarVisibility.Disabled,
268
+ VerticalScrollBarVisibilityRequirement = ScrollBarVisibility.Disabled
269
+ };
270
271
yield return new DemoItem(
272
"Colour Zones",
0 commit comments