diff options
-rw-r--r-- | src/tab.c | 6 | ||||
-rw-r--r-- | src/tab.h | 3 |
2 files changed, 9 insertions, 0 deletions
@@ -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); +} @@ -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 |