summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-02-13 23:43:46 +0100
committerRémi Verschelde <rverschelde@gmail.com>2024-02-13 23:43:46 +0100
commit81184941bcf3c08c6ba006d9b93a15500e354727 (patch)
tree4a7f61fd9209b14ff77c3c75bbcad97fb520673c
parent351a869af6aac11a94e1f7bc3c9c332c07bac5d5 (diff)
parent53dce9a84ead9efc4aa633cf5e2e275e0a6c665a (diff)
downloadredot-engine-81184941bcf3c08c6ba006d9b93a15500e354727.tar.gz
Merge pull request #88290 from Calinou/tilemap-editor-tweak-no-source-message
Tweak TileMap editor's missing source message to use "bottom panel" term
-rw-r--r--editor/plugins/tiles/tile_map_layer_editor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/tiles/tile_map_layer_editor.cpp b/editor/plugins/tiles/tile_map_layer_editor.cpp
index 1551fabc0c..bc19735c4f 100644
--- a/editor/plugins/tiles/tile_map_layer_editor.cpp
+++ b/editor/plugins/tiles/tile_map_layer_editor.cpp
@@ -2363,7 +2363,7 @@ TileMapLayerEditorTilesPlugin::TileMapLayerEditorTilesPlugin() {
tiles_bottom_panel->set_name(TTR("Tiles"));
missing_source_label = memnew(Label);
- missing_source_label->set_text(TTR("This TileMap's TileSet has no source configured. Go to the TileSet bottom tab to add one."));
+ missing_source_label->set_text(TTR("This TileMap's TileSet has no source configured. Go to the TileSet bottom panel to add one."));
missing_source_label->set_h_size_flags(Control::SIZE_EXPAND_FILL);
missing_source_label->set_v_size_flags(Control::SIZE_EXPAND_FILL);
missing_source_label->set_horizontal_alignment(HORIZONTAL_ALIGNMENT_CENTER);