Add " | Stream" to streamwindow

Makes it easier to find the window in obs.
This commit is contained in:
DSchndr 2019-09-06 18:31:41 +02:00 committed by Florian Märkl
commit b1196b30f6

View file

@ -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();
}
}
}