From 58f4a5259a93385142fbe4180ab9d0fb3a3350b7 Mon Sep 17 00:00:00 2001 From: SuryanshSangwan <32640058+suryanshsangwan@users.noreply.github.com> Date: Fri, 4 Feb 2022 01:22:23 +0530 Subject: [PATCH] Lua Editor: Prev Document Tab option from the View menu is misspelled #7345 (#7402) Signed-off-by: suryanshsangwan --- Code/Tools/LuaIDE/Source/LUA/LUAEditorMainWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/Tools/LuaIDE/Source/LUA/LUAEditorMainWindow.cpp b/Code/Tools/LuaIDE/Source/LUA/LUAEditorMainWindow.cpp index 776e290042..6441ad2d56 100644 --- a/Code/Tools/LuaIDE/Source/LUA/LUAEditorMainWindow.cpp +++ b/Code/Tools/LuaIDE/Source/LUA/LUAEditorMainWindow.cpp @@ -108,7 +108,7 @@ namespace LUAEditor m_settingsDialog = aznew LUAEditorSettingsDialog(this); actionTabForwards = new QAction(tr("Next Document Tab"), this); - actionTabBackwards = new QAction(tr("Prev Document Tab"), this); + actionTabBackwards = new QAction(tr("Previous Document Tab"), this); actionTabForwards->setShortcut(QKeySequence("Ctrl+Tab")); connect(actionTabForwards, SIGNAL(triggered(bool)), this, SLOT(OnTabForwards()));