diff options
-rw-r--r-- | src/tab.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -38,7 +38,7 @@ update_tab_label(MqTab *tab) { gchar *label; - label = g_strdup_printf("%d. %s", tab->position + 1, tab->title); + label = g_strdup_printf("%d. %s", tab->position, tab->title); gtk_label_set_text(GTK_LABEL(tab->tab_label), label); gtk_widget_set_tooltip_text(tab->tab, label); g_free(label); |