[LyX/master] Fix casing

Juergen Spitzmueller spitz at lyx.org
Mon Jul 24 07:13:26 UTC 2023


commit d212013bd76e0b5e85f20a007dd2a5911061014c
Author: Juergen Spitzmueller <spitz at lyx.org>
Date:   Mon Jul 24 10:26:57 2023 +0200

    Fix casing
---
 src/frontends/qt/GuiWorkArea.cpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/frontends/qt/GuiWorkArea.cpp b/src/frontends/qt/GuiWorkArea.cpp
index 3cd5f47..de3f70b 100644
--- a/src/frontends/qt/GuiWorkArea.cpp
+++ b/src/frontends/qt/GuiWorkArea.cpp
@@ -2085,13 +2085,13 @@ void TabWorkArea::showContextMenu(const QPoint & pos)
 	// show tab popup
 	QMenu popup;
 	popup.addAction(QIcon(getPixmap("images/", "hidetab", "svgz,png")),
-		qt_("Hide tab"), this, SLOT(hideCurrentTab()));
+		qt_("Hide Tab"), this, SLOT(hideCurrentTab()));
 
 	// we want to show the 'close' option only if this is not a child buffer.
 	Buffer const & buf = wa->bufferView().buffer();
 	if (!buf.parent())
 		popup.addAction(QIcon(getPixmap("images/", "closetab", "svgz,png")),
-			qt_("Close tab"), this, SLOT(closeCurrentBuffer()));
+			qt_("Close Tab"), this, SLOT(closeCurrentBuffer()));
 	popup.exec(tabBar()->mapToGlobal(pos));
 
 	clicked_tab_ = -1;


More information about the lyx-cvs mailing list