diff options
author | sr55 <[email protected]> | 2020-02-12 21:16:28 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2020-02-12 21:16:40 +0000 |
commit | 68d135cb03680b8286ac7c53a21236c0b7bad5c4 (patch) | |
tree | b92edff2667903e443b3d3c1a05c0eeb2f2e1174 | |
parent | fc861815e6ec583b32b68e269df7358195e82a18 (diff) |
WinGui: Workaround a bug in the .NET Framework that's causing odd tooltip behaviours. #2630
-rw-r--r-- | win/CS/HandBrakeWPF/app.config | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/app.config b/win/CS/HandBrakeWPF/app.config index a2962a879..750cd7f5b 100644 --- a/win/CS/HandBrakeWPF/app.config +++ b/win/CS/HandBrakeWPF/app.config @@ -5,6 +5,7 @@ </startup>
<runtime>
<!-- Required for "Per monitor DPI scaling" on .NET < 4.6.2 -->
- <AppContextSwitchOverrides value="Switch.System.Windows.DoNotScaleForDpiChanges=false"/>
+ <AppContextSwitchOverrides value="Switch.System.Windows.DoNotScaleForDpiChanges=false;Switch.UseLegacyToolTipDisplay=true"/>
+
</runtime>
</configuration>
|