From 3683ace654a1a238a2c6599b34dd42e584e19c38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Sat, 29 May 2021 10:34:42 +0200 Subject: [PATCH] Remove message box used during development --- YACReader/main_window_viewer.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/YACReader/main_window_viewer.cpp b/YACReader/main_window_viewer.cpp index 543b9b1d..375e3d13 100644 --- a/YACReader/main_window_viewer.cpp +++ b/YACReader/main_window_viewer.cpp @@ -1508,9 +1508,6 @@ void MainWindowViewer::openNextComic() if (currentIndex + 1 > 0 && currentIndex + 1 < siblingComics.count()) { siblingComics[currentIndex] = currentComicDB; //updated currentComicDB = siblingComics.at(currentIndex + 1); - - QMessageBox::warning(nullptr, "", QString(" current dir %1 - path %2").arg(currentDirectory).arg(currentComicDB.path)); - open(currentDirectory + currentComicDB.path, currentComicDB, siblingComics); }