From e141b9cea3209e194d9a54dcc704c725d05a69f3 Mon Sep 17 00:00:00 2001 From: Orgad Shaneh Date: Tue, 11 Oct 2022 17:45:12 +0300 Subject: [PATCH] ExecuteFilter: Update window title when done The command can change the active branch. Change-Id: I6fd026e29f8e972e694c249b47e106bfdef783a7 Reviewed-by: hjk Reviewed-by: Jarek Kobus Reviewed-by: Eike Ziller --- src/plugins/coreplugin/locator/executefilter.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/plugins/coreplugin/locator/executefilter.cpp b/src/plugins/coreplugin/locator/executefilter.cpp index 854ea514519..7242c294bcf 100644 --- a/src/plugins/coreplugin/locator/executefilter.cpp +++ b/src/plugins/coreplugin/locator/executefilter.cpp @@ -4,6 +4,7 @@ #include "executefilter.h" #include +#include #include #include #include @@ -114,6 +115,7 @@ void ExecuteFilter::done() { QTC_ASSERT(m_process, return); MessageManager::writeFlashing(m_process->exitMessage()); + EditorManager::updateWindowTitles(); // Refresh VCS topic if needed removeProcess(); runHeadCommand();