mirror of
https://github.com/Relintai/material-maker.git
synced 2024-11-13 06:27:18 +01:00
Merge pull request #17 from Calinou/set-minimum-window-size
Define a minimum window size when supported
This commit is contained in:
commit
4212dee2a3
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user