Update the status on vst3_no_scaling and HiDPI

Apparently 200% scaling with Wine's font DPI set to 192 often does work
correctly.
This commit is contained in:
Robbert van der Helm
2021-01-14 17:51:05 +01:00
parent 5dcedbace5
commit 9d5d8c1b60
3 changed files with 11 additions and 7 deletions
+6 -4
View File
@@ -124,10 +124,12 @@ class Configuration {
/**
* Disable `IPlugViewContentScaleSupport::setContentScaleFactor()`. Wine
* does not properly implement DPI scaling, so without this option plugins
* using GDI+ would draw their editor GUIs at the normal size even though
* their window would actually be scaled. That would result in giant black
* borders at the top and the right of the window.
* does not properly implement fractional DPI scaling, so without this
* option plugins using GDI+ would draw their editor GUIs at the normal size
* even though their window would actually be scaled. That would result in
* giant black borders at the top and the right of the window. It appears
* that with a Wine font DPI of 192 plugins often do draw correctly at 200%
* scale.
*/
bool vst3_no_scaling = false;