aboutsummaryrefslogtreecommitdiff
path: root/src/QuickMedia.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/QuickMedia.cpp')
-rw-r--r--src/QuickMedia.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/QuickMedia.cpp b/src/QuickMedia.cpp
index dd5dece..7cface4 100644
--- a/src/QuickMedia.cpp
+++ b/src/QuickMedia.cpp
@@ -3119,6 +3119,7 @@ namespace QuickMedia {
void Program::chat_page(MatrixChatPage *matrix_chat_page, RoomData *current_room) {
assert(strcmp(plugin_name, "matrix") == 0);
+ window.setTitle("QuickMedia - matrix - " + current_room->get_name());
auto video_page = std::make_unique<MatrixVideoPage>(this);
@@ -4239,6 +4240,7 @@ namespace QuickMedia {
// TODO: Instead of doing this, exit this current function and navigate to chat login page instead.
//delete current_plugin;
//current_plugin = new Matrix();
+ window.setTitle("QuickMedia - matrix");
current_page = PageType::CHAT_LOGIN;
chat_login_page();
if(current_page == PageType::CHAT)
@@ -4632,6 +4634,7 @@ namespace QuickMedia {
chat_page_end:
previous_messages_future.cancel();
cleanup_tasks();
+ window.setTitle("QuickMedia - matrix");
}
void Program::after_matrix_login_page() {