Mercurial > pidgin
changeset 22787:b7847aa66150
Move the Local Alias field into the User Options section of the account
modification dialog. This hopefully will help reduce some confusion about
the alias field.
author | John Bailey <rekkanoryo@rekkanoryo.org> |
---|---|
date | Tue, 29 Apr 2008 16:50:12 +0000 |
parents | cf88a302fa88 |
children | a67d70664898 |
files | pidgin/gtkaccount.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/pidgin/gtkaccount.c Tue Apr 29 16:36:14 2008 +0000 +++ b/pidgin/gtkaccount.c Tue Apr 29 16:50:12 2008 +0000 @@ -496,10 +496,6 @@ dialog->password_box = add_pref_box(dialog, vbox, _("_Password:"), dialog->password_entry); - /* Alias */ - dialog->alias_entry = gtk_entry_new(); - add_pref_box(dialog, vbox, _("_Local alias:"), dialog->alias_entry); - /* Remember Password */ dialog->remember_pass_check = gtk_check_button_new_with_mnemonic(_("Remember pass_word")); @@ -571,6 +567,10 @@ gtk_container_add(GTK_CONTAINER(frame), vbox); gtk_widget_show(vbox); + /* Alias */ + dialog->alias_entry = gtk_entry_new(); + add_pref_box(dialog, vbox, _("_Local alias:"), dialog->alias_entry); + /* New mail notifications */ dialog->new_mail_check = gtk_check_button_new_with_mnemonic(_("New _mail notifications"));