From b72010099595ab91cc78b81ebd06ffa2a3d2af38 Mon Sep 17 00:00:00 2001 From: OverloadedOrama <35376950+OverloadedOrama@users.noreply.github.com> Date: Fri, 27 Dec 2019 20:26:55 +0200 Subject: [PATCH] Fixed View menu options not updating the canvas --- Scripts/Main.gd | 1 + 1 file changed, 1 insertion(+) diff --git a/Scripts/Main.gd b/Scripts/Main.gd index c9de3a7..e4e8d70 100644 --- a/Scripts/Main.gd +++ b/Scripts/Main.gd @@ -256,6 +256,7 @@ func edit_menu_id_pressed(id : int) -> void: Global.can_draw = false func view_menu_id_pressed(id : int) -> void: + Global.canvas.update() match id: 0: # Tile mode Global.tile_mode = !Global.tile_mode