diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/tab.c | 1 | ||||
-rw-r--r-- | src/tab.h | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -58,5 +58,6 @@ mq_tab_get_container(MqTab *tab) void mq_tab_update_position(MqTab *tab, guint position) { + tab->tab_position = position; mq_tab_chrome_update_tab_position(tab->chrome, position); } @@ -31,6 +31,7 @@ typedef struct { GtkWidget *container; MqTabChrome *chrome; MqTabBody *body; + guint tab_position; WebKitWebView *web_view; } MqTab; |