diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/tab-chrome.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tab-chrome.c b/src/tab-chrome.c index c61d30e..cbfebb1 100644 --- a/src/tab-chrome.c +++ b/src/tab-chrome.c @@ -94,7 +94,8 @@ static void update_tab_label(MqTabChrome *chrome) { gtk_label_set_text(GTK_LABEL(chrome->tab_label), - webkit_web_view_get_title(chrome->web_view)); + g_strdup_printf("%d. %s", chrome->tab_position + 1, + webkit_web_view_get_title(chrome->web_view))); } void |