From 0873a7bf70eabd9abc65f15bf342814842976675 Mon Sep 17 00:00:00 2001 From: Emmanouil Papadeas <35376950+OverloadedOrama@users.noreply.github.com> Date: Mon, 9 Dec 2024 00:17:24 +0200 Subject: [PATCH] Make the tiles panel immediately visible when loading a project at startup that only has tilemap layers --- src/Main.gd | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Main.gd b/src/Main.gd index 79de4e7b0..1833d2ee9 100644 --- a/src/Main.gd +++ b/src/Main.gd @@ -427,6 +427,7 @@ func load_last_project() -> void: # Check if file still exists on disk var file_path = Global.config_cache.get_value("data", "last_project_path") load_recent_project_file(file_path) + (func(): Global.cel_switched.emit()).call_deferred() func load_recent_project_file(path: String) -> void: