Skip to content

Commit

Permalink
Merge pull request #1510 from onesounds/FixMemoryLeak
Browse files Browse the repository at this point in the history
Fix memory leaks with Plugin store layout
  • Loading branch information
jjw24 authored Nov 10, 2022
2 parents 77fff6c + 07f82ef commit 66cdc88
Show file tree
Hide file tree
Showing 6 changed files with 313 additions and 331 deletions.
3 changes: 2 additions & 1 deletion Flow.Launcher/Flow.Launcher.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@
</PackageReference>
<PackageReference Include="PropertyChanged.Fody" Version="3.4.0" />
<PackageReference Include="SharpVectors" Version="1.7.6" />
<PackageReference Include="VirtualizingWrapPanel" Version="1.5.7" />
</ItemGroup>

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

<ItemGroup>
<FilteredAnalyzer Include="@(Analyzer->Distinct())" />
<FilteredAnalyzer Include="@(Analyzer-&gt;Distinct())" />
<Analyzer Remove="@(Analyzer)" />
<Analyzer Include="@(FilteredAnalyzer)" />
</ItemGroup>
Expand Down
2 changes: 2 additions & 0 deletions Flow.Launcher/Resources/Dark.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@
<SolidColorBrush x:Key="CustomContextDisabled" Color="#868686" />
<SolidColorBrush x:Key="ContextSeparator" Color="#3c3c3c" />

<SolidColorBrush x:Key="HoverStoreGrid2">#272727</SolidColorBrush>

<Color x:Key="Color01">#202020</Color>
<Color x:Key="Color02">#2b2b2b</Color>
<Color x:Key="Color03">#1d1d1d</Color>
Expand Down
2 changes: 2 additions & 0 deletions Flow.Launcher/Resources/Light.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@
<SolidColorBrush x:Key="CustomContextDisabled" Color="#868686" />
<SolidColorBrush x:Key="ContextSeparator" Color="#dadada" />

<SolidColorBrush x:Key="HoverStoreGrid2">#f6f6f6</SolidColorBrush>

<Color x:Key="Color01">#f3f3f3</Color>
<Color x:Key="Color02">#ffffff</Color>
<Color x:Key="Color03">#e5e5e5</Color>
Expand Down
Loading

0 comments on commit 66cdc88

Please sign in to comment.