diff options
author | sr55 <[email protected]> | 2019-09-23 18:10:57 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2019-09-23 18:11:30 +0100 |
commit | 9336b9cb07f02a1d87c60e3c437b4a84a51d6777 (patch) | |
tree | b332627082c5e03d97d8bcc0d714d4fed46a23a6 /win/CS/HandBrakeWPF/Views/MainView.xaml | |
parent | 10c787e5b4f19abd30272444d09ca6b7b7f6a84a (diff) |
WinGui: Windows 8.1 has broken image scaling under certain conditions when using certain optimised png files. Change the scaling mode to one that appears to work more reliabally.
Diffstat (limited to 'win/CS/HandBrakeWPF/Views/MainView.xaml')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/MainView.xaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/Views/MainView.xaml b/win/CS/HandBrakeWPF/Views/MainView.xaml index 1e1cf40dd..ba4e361ea 100644 --- a/win/CS/HandBrakeWPF/Views/MainView.xaml +++ b/win/CS/HandBrakeWPF/Views/MainView.xaml @@ -763,7 +763,7 @@ <Image Width="20"
Height="20"
Source="{Binding Converter={StaticResource themeConverter}, ConverterParameter='Advanced.png'}"
- RenderOptions.BitmapScalingMode="HighQuality"
+ RenderOptions.BitmapScalingMode="Linear"
/>
<TextBlock Margin="2,0,0,0"
VerticalAlignment="Center"
|