logo

badwolf

Minimalist and privacy-oriented WebKitGTK+ browser
commit: aa12734c147f4112ede7f3188f6257660a0aa31f
parent: d33378425a568cfa421de689cc0ff571b30daf12
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Sat,  9 Mar 2019 13:35:18 +0100

badwolf.c: Insert tab rather than append

Diffstat:

Mbadwolf.c3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/badwolf.c b/badwolf.c @@ -311,9 +311,10 @@ struct Client *new_browser(struct Window *window, gchar *target_url) int badwolf_new_tab(GtkNotebook *notebook, GtkWidget *box) { + gint current_page = gtk_notebook_get_current_page(notebook); gtk_widget_show_all(box); - if(gtk_notebook_append_page(notebook, box, NULL) == -1) { + if(gtk_notebook_insert_page(notebook, box, NULL, current_page++) == -1) { return -1; }