From c0effb43b3f92f68df8c6cdec50d63087211a141 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Sun, 6 Aug 2023 08:52:18 +0200 Subject: [PATCH] Fix set type context menu --- YACReaderLibrary/library_window.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/YACReaderLibrary/library_window.cpp b/YACReaderLibrary/library_window.cpp index 00690e5d..f4dccd89 100644 --- a/YACReaderLibrary/library_window.cpp +++ b/YACReaderLibrary/library_window.cpp @@ -1992,13 +1992,13 @@ void LibraryWindow::showGridFoldersContextMenu(QPoint point, Folder folder) setFolderAsNormalAction->setText(tr("comic")); auto setFolderAsWesternMangaAction = new QAction(); - setFolderAsMangaAction->setText(tr("manga (or left to right)")); + setFolderAsWesternMangaAction->setText(tr("manga (or left to right)")); auto setFolderAsWebComicAction = new QAction(); - setFolderAsNormalAction->setText(tr("web comic")); + setFolderAsWebComicAction->setText(tr("web comic")); auto setFolderAs4KomaAction = new QAction(); - setFolderAsMangaAction->setText(tr("4koma (or top to botom")); + setFolderAs4KomaAction->setText(tr("4koma (or top to botom")); menu.addAction(openContainingFolderAction); menu.addAction(updateFolderAction);