File tree Expand file tree Collapse file tree 4 files changed +3
-4
lines changed
Flow.Launcher.Core/Plugin Expand file tree Collapse file tree 4 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -82,10 +82,10 @@ public override async Task ReloadDataAsync()
82
82
83
83
public override async ValueTask DisposeAsync ( )
84
84
{
85
+ await base . DisposeAsync ( ) ;
85
86
ClientProcess . Kill ( true ) ;
86
87
await ClientProcess . WaitForExitAsync ( ) ;
87
88
ClientProcess . Dispose ( ) ;
88
- await base . DisposeAsync ( ) ;
89
89
}
90
90
}
91
91
}
Original file line number Diff line number Diff line change 4
4
<OutputType >WinExe</OutputType >
5
5
<TargetFramework >net7.0-windows10.0.19041.0</TargetFramework >
6
6
<UseWPF >true</UseWPF >
7
- <UseWindowsForms >true </UseWindowsForms >
7
+ <UseWindowsForms >false </UseWindowsForms >
8
8
<StartupObject >Flow.Launcher.App</StartupObject >
9
9
<ApplicationIcon >Resources\app.ico</ApplicationIcon >
10
10
<ApplicationManifest >app.manifest</ApplicationManifest >
Original file line number Diff line number Diff line change 49
49
DPIs. Windows Presentation Foundation (WPF) applications are automatically DPI-aware and do not need
50
50
to opt in. Windows Forms applications targeting .NET Framework 4.6 that opt into this setting, should
51
51
also set the 'EnableWindowsFormsHighDpiAutoResizing' setting to 'true' in their app.config. -->
52
- <!--
53
52
<application xmlns =" urn:schemas-microsoft-com:asm.v3" >
54
53
<windowsSettings >
55
54
<dpiAware xmlns =" http://schemas.microsoft.com/SMI/2005/WindowsSettings" >true</dpiAware >
55
+ <dpiAwareness xmlns =" http://schemas.microsoft.com/SMI/2016/WindowsSettings" >PerMonitorV2, PerMonitor</dpiAwareness >
56
56
</windowsSettings >
57
57
</application >
58
- -->
59
58
60
59
<!-- Enable themes for Windows common controls and dialogs (Windows XP and later) -->
61
60
<dependency >
You can’t perform that action at this time.
0 commit comments