Skip to content
Snippets Groups Projects
Commit 97ecee2b authored by pierre-luc's avatar pierre-luc
Browse files

[#1904] Added mnemonic to tabs in sflphone-client-gnome.

parent 82f4e905
No related branches found
No related tags found
No related merge requests found
...@@ -299,12 +299,12 @@ show_account_window (account_t * a) ...@@ -299,12 +299,12 @@ show_account_window (account_t * a)
/* General Settings */ /* General Settings */
tab = createAccountTab(a); tab = createAccountTab(a);
gtk_notebook_append_page(GTK_NOTEBOOK(notebook), tab, gtk_label_new(_("Basic"))); gtk_notebook_append_page(GTK_NOTEBOOK(notebook), tab, gtk_label_new_with_mnemonic(_("_Basic")));
gtk_notebook_page_num(GTK_NOTEBOOK(notebook), tab); gtk_notebook_page_num(GTK_NOTEBOOK(notebook), tab);
/* Advanced */ /* Advanced */
tab = createAdvancedTab(a); tab = createAdvancedTab(a);
gtk_notebook_append_page(GTK_NOTEBOOK(notebook), tab, gtk_label_new(_("Advanced"))); gtk_notebook_append_page(GTK_NOTEBOOK(notebook), tab, gtk_label_new_with_mnemonic(_("_Advanced")));
gtk_notebook_page_num(GTK_NOTEBOOK(notebook), tab); gtk_notebook_page_num(GTK_NOTEBOOK(notebook), tab);
gtk_notebook_set_current_page( GTK_NOTEBOOK( notebook) , 0); gtk_notebook_set_current_page( GTK_NOTEBOOK( notebook) , 0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment