aboutsummaryrefslogtreecommitdiff
path: root/src/window.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/window.c b/src/window.c
index 13323c9..b4663be 100644
--- a/src/window.c
+++ b/src/window.c
@@ -59,6 +59,9 @@ void
cherry_window_set_title(CherryWindow *w, char *title)
{
w->title = strdup(title);
+
+ CherryApplication *app = cherry_application_get_running_app();
+ XStoreName(app->display, w->window_handler, w->title);
}
void