Define a minimum window size when supported

This prevents UI elements from collapsing when resizing the window.
This commit is contained in:
Hugo Locurcio 2019-10-17 14:28:46 +02:00
parent 854b0c8b98
commit 7d2ee73a1a
No known key found for this signature in database
GPG Key ID: 39E8F8BE30B0A49C

View File

@ -41,6 +41,10 @@ const MENU = [
signal quit
func _ready():
# Set a minimum window size to prevent UI elements from collapsing on each other.
# This property is only available in 3.2alpha or later, so use `set()` to fail gracefully if it doesn't exist.
OS.set("min_window_size", Vector2(1024, 600))
if !Engine.editor_hint:
OS.set_window_title(ProjectSettings.get_setting("application/config/name")+" v"+ProjectSettings.get_setting("application/config/release"))
load_recents()