From b1196b30f64fb2c73a5e7d6ef296d986b1e315cf Mon Sep 17 00:00:00 2001 From: DSchndr Date: Fri, 6 Sep 2019 18:31:41 +0200 Subject: [PATCH] Add " | Stream" to streamwindow Makes it easier to find the window in obs. --- gui/src/streamwindow.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gui/src/streamwindow.cpp b/gui/src/streamwindow.cpp index acb7071..a993ebb 100644 --- a/gui/src/streamwindow.cpp +++ b/gui/src/streamwindow.cpp @@ -29,8 +29,8 @@ StreamWindow::StreamWindow(const StreamSessionConnectInfo &connect_info, QWidget : QMainWindow(parent) { setAttribute(Qt::WA_DeleteOnClose); - setWindowTitle(qApp->applicationName()); - + setWindowTitle(qApp->applicationName() + " | Stream"); + session = nullptr; av_widget = nullptr; @@ -135,4 +135,4 @@ void StreamWindow::ToggleFullscreen() setCursor(Qt::BlankCursor); showFullScreen(); } -} \ No newline at end of file +}