┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinmainwindow.cpp
diff options
context:
space:
mode:
authorJin Liu <[email protected]>2024-01-12 12:56:43 +0800
committerJin Liu <[email protected]>2024-01-13 01:47:15 +0000
commit3619e74eb17f8ed2e76dadbef9c052304decd18b (patch)
tree96a049798ae5b19d38b3b81702b0f9daf549d1ef /src/dolphinmainwindow.cpp
parent348a36439ef6fe91f024c173905864aac677622b (diff)
Fix: closing split view doesn't update tab name
BUG: 469316
Diffstat (limited to 'src/dolphinmainwindow.cpp')
-rw-r--r--src/dolphinmainwindow.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp
index 67a62eaac..745fa97cc 100644
--- a/src/dolphinmainwindow.cpp
+++ b/src/dolphinmainwindow.cpp
@@ -920,6 +920,7 @@ void DolphinMainWindow::toggleSplitView()
{
DolphinTabPage *tabPage = m_tabWidget->currentTabPage();
tabPage->setSplitViewEnabled(!tabPage->splitViewEnabled(), WithAnimation);
+ m_tabWidget->updateTabName(m_tabWidget->indexOf(tabPage));
updateViewActions();
}