summaryrefslogtreecommitdiffstats
path: root/modules/gridmap
diff options
context:
space:
mode:
authorChaosus <chaosus89@gmail.com>2024-11-14 11:37:17 +0300
committerChaosus <chaosus89@gmail.com>2024-11-14 11:37:17 +0300
commitf3344b71b132c3a73cde1b9c111ea3acc03e96ca (patch)
treea1c462f7def87ed971750783d8f481a5082dccd7 /modules/gridmap
parent76fa7b291455a8ba24c50005072ebdb58f8a5984 (diff)
downloadredot-engine-f3344b71b132c3a73cde1b9c111ea3acc03e96ca.tar.gz
Fix incorrect order: `TTR(vformat` instead of `vformat(TTR`
Diffstat (limited to 'modules/gridmap')
-rw-r--r--modules/gridmap/editor/grid_map_editor_plugin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gridmap/editor/grid_map_editor_plugin.cpp b/modules/gridmap/editor/grid_map_editor_plugin.cpp
index 432ce5ffa3..99e3b02dea 100644
--- a/modules/gridmap/editor/grid_map_editor_plugin.cpp
+++ b/modules/gridmap/editor/grid_map_editor_plugin.cpp
@@ -1462,9 +1462,9 @@ GridMapEditor::GridMapEditor() {
floor->set_max(32767);
floor->set_step(1);
floor->set_tooltip_text(
- TTR(vformat("Change Grid Floor:\nPrevious Plane (%s)\nNext Plane (%s)",
+ vformat(TTR("Change Grid Floor:\nPrevious Plane (%s)\nNext Plane (%s)"),
ED_GET_SHORTCUT("grid_map/previous_floor")->get_as_text(),
- ED_GET_SHORTCUT("grid_map/next_floor")->get_as_text())));
+ ED_GET_SHORTCUT("grid_map/next_floor")->get_as_text()));
toolbar->add_child(floor);
floor->get_line_edit()->add_theme_constant_override("minimum_character_width", 2);
floor->get_line_edit()->set_context_menu_enabled(false);