From daf54133c258874acf3342d1907174a9923ebed0 Mon Sep 17 00:00:00 2001 From: Michael Alexsander Silva Dias Date: Thu, 20 Dec 2018 19:52:56 -0200 Subject: Fix small drawing error in TileSet editor --- editor/plugins/tile_set_editor_plugin.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/editor/plugins/tile_set_editor_plugin.cpp b/editor/plugins/tile_set_editor_plugin.cpp index cab9a4297d..feba757a9c 100644 --- a/editor/plugins/tile_set_editor_plugin.cpp +++ b/editor/plugins/tile_set_editor_plugin.cpp @@ -874,6 +874,9 @@ void TileSetEditor::_on_workspace_draw() { draw_edited_region_subdivision(); } else { int t_id = get_current_tile(); + if (t_id < 0) + return; + Rect2i region; if (draw_edited_region) region = edited_region; -- cgit v1.2.3