From c14de4913c763e7e9a1df0448c2610bee3e57b46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Du=C5=A1an=20Poizl?= Date: Wed, 1 Feb 2017 18:12:17 +0100 Subject: [PATCH] Update window title after markAndNext() --- mainwindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mainwindow.cpp b/mainwindow.cpp index cb3e2ae..2551766 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -178,12 +178,14 @@ void MainWindow::markAndNext() { markImage(); m_ringList->increment(); + updateWindowTitle(); } void MainWindow::unmarkAndNext() { unmarkImage(); m_ringList->increment(); + updateWindowTitle(); } void MainWindow::copyMarked()