[Editor] Fix missing "+" in the bunch of tooltips.

This commit is contained in:
Pāvels Nadtočajevs
2025-12-05 10:20:50 +02:00
parent 63e14e13f9
commit e2b8c9f038
7 changed files with 10 additions and 10 deletions

View File

@@ -855,7 +855,7 @@ void GameView::_camera_override_menu_id_pressed(int p_id) {
void GameView::_notification(int p_what) {
switch (p_what) {
case NOTIFICATION_TRANSLATION_CHANGED: {
select_mode_button[RuntimeNodeSelect::SELECT_MODE_SINGLE]->set_tooltip_text(keycode_get_string((Key)KeyModifierMask::CMD_OR_CTRL) + TTR("Alt+RMB: Show list of all nodes at position clicked."));
select_mode_button[RuntimeNodeSelect::SELECT_MODE_SINGLE]->set_tooltip_text(vformat(TTR("%s+Alt+RMB: Show list of all nodes at position clicked."), keycode_get_string((Key)KeyModifierMask::CMD_OR_CTRL)));
_update_ui();
} break;