diff options
Diffstat (limited to 'window.c')
-rw-r--r-- | window.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -87,6 +87,11 @@ void scroll_window(gdouble x, gdouble y) v_adj); } +void set_window_title(const char *title) +{ + gtk_window_set_title(GTK_WINDOW(window), title); +} + void get_curr_win_size(gint *width, gint *height) { gtk_window_get_size(GTK_WINDOW(window), width, height); |