diff options
-rw-r--r-- | CHANGES | 10 | ||||
-rw-r--r-- | browser.c | 3 |
2 files changed, 10 insertions, 3 deletions
@@ -1,5 +1,15 @@ Release history for lariza +next + [Changed] + - We no longer explicitly set the X11 window's class and name. Let + GTK+ do this job. The actual class and name should be unchanged, + though (WM_CLASS(STRING) = "lariza", "Lariza"). + + This does not affect tabbed which is still run with "-n lariza". + + This change fixes a GTK+ deprecation warning. + v16.09 2016-09-03 [Changed] - Web extensions are now looked for in ~/.config/lariza/web_extensions. @@ -142,10 +142,7 @@ client_new(const gchar *uri) } if (c->win == NULL) - { c->win = gtk_window_new(GTK_WINDOW_TOPLEVEL); - gtk_window_set_wmclass(GTK_WINDOW(c->win), __NAME__, __NAME_CAPITALIZED__); - } gtk_window_set_default_size(GTK_WINDOW(c->win), 800, 600); |