From 9497c651f929631aacc835161f9a5a529fdec223 Mon Sep 17 00:00:00 2001 From: Olivier HUMBERT Date: Sat, 3 May 2025 12:45:04 +0200 Subject: [PATCH] Fix a typo in mainwindow.cpp --- app/gui/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/gui/mainwindow.cpp b/app/gui/mainwindow.cpp index 206a06f18d..c2673824e4 100644 --- a/app/gui/mainwindow.cpp +++ b/app/gui/mainwindow.cpp @@ -3001,7 +3001,7 @@ void MainWindow::updateShortcuts() updateShortcut("DocEnd", textDocEndAct, tr("Move Cursor to End of Document")); updateShortcut("WordRight", textWordRightAct, tr("Move Cursor Right by Word")); updateShortcut("WordLeft", textWordLeftAct, tr("Move Cursor Left by Word")); - updateShortcut("CenterVertically", textCenterCaretAct, tr("Vertially center the caret in the editor")); + updateShortcut("CenterVertically", textCenterCaretAct, tr("Vertically center the caret in the editor")); updateShortcut("Undo", textUndoAct, tr("Undo the last action")); updateShortcut("Redo", textRedoAct, tr("Redo the last undo")); updateShortcut("SelectAll", textSelectAllAct, tr("Select all text"));