Skip to content

Commit 4dd0b67

Browse files
authored
Merge pull request #98254 from timothyqiu/marker-typos
Fix typos in `AnimationMarkerEdit`
2 parents 1435247 + 3d07fce commit 4dd0b67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

editor/animation_track_editor.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8763,7 +8763,7 @@ void AnimationMarkerEdit::_move_selection_commit() {
87638763
void AnimationMarkerEdit::_delete_selected_markers() {
87648764
if (selection.size()) {
87658765
EditorUndoRedoManager *undo_redo = EditorUndoRedoManager::get_singleton();
8766-
undo_redo->create_action(TTR("Animation Delete Keys"));
8766+
undo_redo->create_action(TTR("Animation Delete Markers"));
87678767
for (const StringName &name : selection) {
87688768
double time = animation->get_marker_time(name);
87698769
undo_redo->add_do_method(animation.ptr(), "remove_marker", name);
@@ -8967,7 +8967,7 @@ AnimationMarkerEdit::AnimationMarkerEdit() {
89678967
add_child(menu);
89688968
menu->connect(SceneStringName(id_pressed), callable_mp(this, &AnimationMarkerEdit::_menu_selected));
89698969
menu->add_shortcut(ED_SHORTCUT("animation_marker_edit/rename_marker", TTR("Rename Marker"), Key::R), MENU_KEY_RENAME);
8970-
menu->add_shortcut(ED_SHORTCUT("animation_marker_edit/delete_selection", TTR("Delete Markers (s)"), Key::KEY_DELETE), MENU_KEY_DELETE);
8970+
menu->add_shortcut(ED_SHORTCUT("animation_marker_edit/delete_selection", TTR("Delete Marker(s)"), Key::KEY_DELETE), MENU_KEY_DELETE);
89718971
menu->add_shortcut(ED_SHORTCUT("animation_marker_edit/toggle_marker_names", TTR("Show All Marker Names"), Key::M), MENU_KEY_TOGGLE_MARKER_NAMES);
89728972

89738973
marker_insert_confirm = memnew(ConfirmationDialog);

0 commit comments

Comments
 (0)