Don't halve indicator icon size on Mac.

This commit is contained in:
Jeff Young 2023-10-01 19:00:44 +01:00
parent d9f1aaa8e3
commit 40ef850bd3
1 changed files with 2 additions and 2 deletions

View File

@ -142,8 +142,8 @@ double KIPLATFORM::UI::GetPixelScaleFactor( const wxWindow* aWindow )
double KIPLATFORM::UI::GetContentScaleFactor( const wxWindow* aWindow )
{
// TODO: Check if this should be different on macOS
return GetPixelScaleFactor( aWindow );
// Native GUI resolution on Retina displays
return GetPixelScaleFactor( aWindow ) / 2.0;
}