Skip to content

Commit 66cdc88

Browse files
authored
Merge pull request #1510 from onesounds/FixMemoryLeak
Fix memory leaks with Plugin store layout
2 parents 77fff6c + 07f82ef commit 66cdc88

File tree

6 files changed

+313
-331
lines changed

6 files changed

+313
-331
lines changed

Flow.Launcher/Flow.Launcher.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@
9898
</PackageReference>
9999
<PackageReference Include="PropertyChanged.Fody" Version="3.4.0" />
100100
<PackageReference Include="SharpVectors" Version="1.7.6" />
101+
<PackageReference Include="VirtualizingWrapPanel" Version="1.5.7" />
101102
</ItemGroup>
102103

103104
<ItemGroup>
@@ -120,7 +121,7 @@
120121
<!-- Work around https://github.com/dotnet/wpf/issues/6792 -->
121122

122123
<ItemGroup>
123-
<FilteredAnalyzer Include="@(Analyzer->Distinct())" />
124+
<FilteredAnalyzer Include="@(Analyzer-&gt;Distinct())" />
124125
<Analyzer Remove="@(Analyzer)" />
125126
<Analyzer Include="@(FilteredAnalyzer)" />
126127
</ItemGroup>

Flow.Launcher/Resources/Dark.xaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@
6969
<SolidColorBrush x:Key="CustomContextDisabled" Color="#868686" />
7070
<SolidColorBrush x:Key="ContextSeparator" Color="#3c3c3c" />
7171

72+
<SolidColorBrush x:Key="HoverStoreGrid2">#272727</SolidColorBrush>
73+
7274
<Color x:Key="Color01">#202020</Color>
7375
<Color x:Key="Color02">#2b2b2b</Color>
7476
<Color x:Key="Color03">#1d1d1d</Color>

Flow.Launcher/Resources/Light.xaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@
6262
<SolidColorBrush x:Key="CustomContextDisabled" Color="#868686" />
6363
<SolidColorBrush x:Key="ContextSeparator" Color="#dadada" />
6464

65+
<SolidColorBrush x:Key="HoverStoreGrid2">#f6f6f6</SolidColorBrush>
66+
6567
<Color x:Key="Color01">#f3f3f3</Color>
6668
<Color x:Key="Color02">#ffffff</Color>
6769
<Color x:Key="Color03">#e5e5e5</Color>

0 commit comments

Comments
 (0)