Fix running on mono harder

This commit is contained in:
Morilli 2024-06-12 18:36:40 +02:00
parent 70e118b93f
commit 712c82b0df
1 changed files with 4 additions and 1 deletions

View File

@ -52,7 +52,10 @@ namespace BizHawk.Client.EmuHawk
public override Size GetPanelNativeSize() => _presentationPanel.NativeSize;
protected override int GetGraphicsControlDpi() => OSTailoredCode.IsUnixHost ? 96 : _graphicsControl.DeviceDpi;
protected override int GetGraphicsControlDpi() => OSTailoredCode.IsUnixHost ? 96 : GraphicsControlDpi;
// DeviceDpi is not available under mono, so we need to have this access wrapped in a separate function
private int GraphicsControlDpi => _graphicsControl.DeviceDpi;
protected override Point GraphicsControlPointToClient(Point p) => _graphicsControl.PointToClient(p);