1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Linux: Return 1.0 for GNOME scaling-factor if it hasn't been set

This commit is contained in:
ed 2019-10-04 16:12:04 +01:00
parent 246ab9f129
commit be134d9185

View file

@ -958,6 +958,8 @@ static double getScaleForDisplay (const String& name, double dpi)
if (scaleFactor > 0.0)
return scaleFactor;
return 1.0;
}
}
}