Skip to content

Commit

Permalink
fix: enable mousewheel scroll for queue
Browse files Browse the repository at this point in the history
  • Loading branch information
zznty committed Apr 24, 2024
1 parent fa1219b commit 4cbe104
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions MusicX/Controls/PlayerControl.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -629,6 +629,19 @@
<EventSetter Event="Drop" Handler="ListBoxItem_OnDrop" />
</Style>
</ui:ListView.ItemContainerStyle>
<ui:ListView.Template>
<ControlTemplate TargetType="ui:ListView">
<hc:ScrollViewer
Name="PART_ScrollViewer"
Padding="{TemplateBinding Control.Padding}"
CanContentScroll="{TemplateBinding ScrollViewer.CanContentScroll}"
Focusable="False"
IsInertiaEnabled="True"
hc:ScrollViewerAttach.AutoHide="True">
<ItemsPresenter />
</hc:ScrollViewer>
</ControlTemplate>
</ui:ListView.Template>
</ui:ListView>

<wpfui:ProgressRing
Expand Down

0 comments on commit 4cbe104

Please sign in to comment.