logo

badwolf

Minimalist and privacy-oriented WebKitGTK+ browser
commit: d9cd162c1af558f75d508f4dd75b6b7f162e0700
parent: 84d5d7513da5182b70a4fc11ad21ee5951f98ed0
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Fri, 14 Jun 2019 05:59:02 +0200

Synchronise the menu-label of a tab with it’s title

Diffstat:

Mbadwolf.c2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/badwolf.c b/badwolf.c @@ -393,7 +393,9 @@ webView_tab_label_change(struct Client *browser, const gchar *title) gtk_notebook_set_tab_label( GTK_NOTEBOOK(notebook), browser->box, badwolf_new_tab_box(title, browser)); + gtk_notebook_set_menu_label_text(GTK_NOTEBOOK(notebook), browser->box, title); + // Set the window title if the title change was on the current tab if(get_tab_position(GTK_CONTAINER(notebook), browser->box) == gtk_notebook_get_current_page(GTK_NOTEBOOK(notebook))) gtk_window_set_title(GTK_WINDOW(browser->window->main_window), title);