X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fmainwindow.cpp;h=1738f9b16cfea0adfcfa65d6018c0bbffab68bf4;hp=e213f511e7b1f92419d5154f337d524dbfc40c73;hb=3cb15390cef38a29e3befd517b6fd20ca228c2bc;hpb=caa4a2db5e100713818a353c17d2dc00fa475a2a diff --git a/pv/mainwindow.cpp b/pv/mainwindow.cpp index e213f51..1738f9b 100644 --- a/pv/mainwindow.cpp +++ b/pv/mainwindow.cpp @@ -578,6 +578,14 @@ void MainWindow::on_session_name_changed() } } + // Update the tab widget by finding the main window and the tab from that + for (auto entry : session_windows_) + if (entry.first.get() == session) { + QMainWindow *window = entry.second; + const int index = session_selector_.indexOf(window); + session_selector_.setTabText(index, session->name()); + } + // Refresh window title if the affected session has focus if (session == last_focused_session_.get()) setWindowTitle(session->name() + " - " + WindowTitle);