Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions AutoLoad/GlobalUI.gd
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,10 @@ func setRetinaScaling() -> void:
Debug.printAutoLoadLog(str("DisplayServer screen scale: ", DisplayServer.screen_get_scale()))
var window: Window = self.get_window()
# window.content_scale_factor = 2.0 # UNUSED: Doubling the window size doubles the pixels anyway, right?
window.size *= 2 # TBD: Double the Viewport size?
window.move_to_center()

## Those two lines are glitching the user intended window size and position when fullscreen:
#window.size *= 2 # TBD: Double the Viewport size?
#window.move_to_center()

#endregion

Expand Down