1
0
Fork 0
mirror of https://github.com/Orama-Interactive/Pixelorama.git synced 2025-01-18 17:19:50 +00:00

Do not automatically set the UI scale to 0.75

It seems that people who had their UI automatically scaled to 0.75 did not like this and wanted to find a way to resize the UI.
This commit is contained in:
Emmanouil Papadeas 2023-02-09 01:40:51 +02:00
parent ea746538cf
commit c6d6c6184c

View file

@ -97,8 +97,6 @@ func _get_auto_display_scale() -> float:
return 2.0 # hiDPI display.
elif smallest_dimension >= 1700:
return 1.5 # Likely a hiDPI display, but we aren't certain due to the returned DPI.
elif smallest_dimension <= 800:
return 0.75 # Small loDPI display.
return 1.0