From be77ca07e282a233ef44f12fdeb3dec502046580 Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Fri, 15 Feb 2019 20:37:19 +0200 Subject: SubWindow: closing tab restores previous index SubWindow keeps track of its previous tab index, and when a tab is closed, the previous index should be restored. --- src/subwindow/tabwidget.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/subwindow/tabwidget.h') diff --git a/src/subwindow/tabwidget.h b/src/subwindow/tabwidget.h index d615bcb..d67d2de 100644 --- a/src/subwindow/tabwidget.h +++ b/src/subwindow/tabwidget.h @@ -45,9 +45,9 @@ protected: void contextMenuEvent(QContextMenuEvent *event) override; void mousePressEvent(QMouseEvent *event) override; - - private: + int current = -1; + int previous = -1; QMenu *tabContextMenu; QQueue m_closedTabs; }; -- cgit v1.2.1