From a1d59a79ce8a8f8d12f6f58ced1cc3cab44e6f85 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Sun, 17 Sep 2017 02:33:40 -0400 Subject: mq_tab_update_position(): New function --- diff --git a/src/tab.c b/src/tab.c index 0f8d298..f5851ca 100644 --- a/src/tab.c +++ b/src/tab.c @@ -54,3 +54,9 @@ mq_tab_get_container(MqTab *tab) { return tab->container; } + +void +mq_tab_update_position(MqTab *tab, guint position) +{ + mq_tab_chrome_update_tab_position(tab->chrome, position); +} diff --git a/src/tab.h b/src/tab.h index 5eeda0d..d8fbcc9 100644 --- a/src/tab.h +++ b/src/tab.h @@ -39,4 +39,7 @@ mq_tab_new(gchar *uri, GtkWidget *tab_image, GtkWidget *tab_label); GtkWidget * mq_tab_get_container(MqTab *tab); +void +mq_tab_update_position(MqTab *tab, guint position); + #endif -- cgit v0.9.1