mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fixed scroll wheel not working in the theme list
This commit is contained in:
parent
87c5a17aed
commit
4865ae3b4f
1 changed files with 13 additions and 5 deletions
|
|
@ -407,16 +407,13 @@
|
|||
</StackPanel>
|
||||
</cc:ExCard.SideContent>
|
||||
<ListBox
|
||||
Padding="18 12 18 12"
|
||||
HorizontalAlignment="Stretch"
|
||||
HorizontalContentAlignment="Stretch"
|
||||
Background="Transparent"
|
||||
BorderBrush="{DynamicResource Color03B}"
|
||||
BorderThickness="0 1 0 0"
|
||||
ItemContainerStyle="{DynamicResource ThemeList}"
|
||||
ItemsSource="{Binding Themes}"
|
||||
ScrollViewer.HorizontalScrollBarVisibility="Disabled"
|
||||
ScrollViewer.VerticalScrollBarVisibility="Auto"
|
||||
ScrollViewer.VerticalScrollBarVisibility="Disabled"
|
||||
SelectedValue="{Binding SelectedTheme}">
|
||||
<ListBox.ItemsPanel>
|
||||
<ItemsPanelTemplate>
|
||||
|
|
@ -428,7 +425,8 @@
|
|||
<Grid
|
||||
Width="Auto"
|
||||
Height="34"
|
||||
Margin="0">
|
||||
Margin="0"
|
||||
Focusable="True">
|
||||
<StackPanel Margin="14 2 14 0" Orientation="Horizontal">
|
||||
<TextBlock
|
||||
Margin="0 0 0 0"
|
||||
|
|
@ -452,6 +450,16 @@
|
|||
</Grid>
|
||||
</DataTemplate>
|
||||
</ListBox.ItemTemplate>
|
||||
<ListBox.Template>
|
||||
<ControlTemplate>
|
||||
<Border
|
||||
Padding="18 12 18 12"
|
||||
BorderBrush="{DynamicResource Color03B}"
|
||||
BorderThickness="0 1 0 0">
|
||||
<ItemsPresenter />
|
||||
</Border>
|
||||
</ControlTemplate>
|
||||
</ListBox.Template>
|
||||
</ListBox>
|
||||
</cc:ExCard>
|
||||
<cc:HyperLink
|
||||
|
|
|
|||
Loading…
Reference in a new issue