Переглянути джерело

Merge pull request #29461 from YeldhamDev/tilemapeditor_search_errorspam_fix

Fix error spam when typing in the TileMap editor's search box while having no results
Rémi Verschelde 6 роки тому
батько
коміт
bdbf2e818c
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      editor/plugins/tile_map_editor_plugin.cpp

+ 1 - 1
editor/plugins/tile_map_editor_plugin.cpp

@@ -503,7 +503,7 @@ void TileMapEditor::_update_palette() {
 	if (selected.get(0) != TileMap::INVALID_CELL) {
 		set_selected_tiles(selected);
 		sel_tile = selected.get(Math::rand() % selected.size());
-	} else {
+	} else if (palette->get_item_count() > 0) {
 		palette->select(0);
 	}