Mercurial > pidgin
changeset 7797:0fb10479a6a3
[gaim-migrate @ 8443]
I wanted to make the set_size_requests consistent... and I thought
it's just be better without them. Whatyou guys thing?
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Sun, 07 Dec 2003 22:37:41 +0000 |
parents | e04c0044c56f |
children | 824add06abde |
files | src/dialogs.c src/gtkprefs.c |
diffstat | 2 files changed, 4 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/src/dialogs.c Sun Dec 07 20:49:00 2003 +0000 +++ b/src/dialogs.c Sun Dec 07 22:37:41 2003 +0000 @@ -558,7 +558,6 @@ gtk_container_add(GTK_CONTAINER(hbox), vbox); label = gtk_label_new(_("Please enter the screenname of the person you would like to IM.\n")); - gtk_widget_set_size_request(GTK_WIDGET(label), 350, -1); gtk_label_set_line_wrap(GTK_LABEL(label), TRUE); gtk_misc_set_alignment(GTK_MISC(label), 0, 0); gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 0); @@ -781,8 +780,6 @@ label = gtk_label_new(_("Please enter the URL and description of " "the link that you want to insert. The " "description is optional.\n")); - - gtk_widget_set_size_request(GTK_WIDGET(label), 335, -1); gtk_label_set_line_wrap(GTK_LABEL(label), TRUE); gtk_misc_set_alignment(GTK_MISC(label), 0, 0); gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 0);
--- a/src/gtkprefs.c Sun Dec 07 20:49:00 2003 +0000 +++ b/src/gtkprefs.c Sun Dec 07 22:37:41 2003 +0000 @@ -1124,7 +1124,7 @@ gtk_container_add(GTK_CONTAINER(vbox), table); - label = gtk_label_new_with_mnemonic(_("_Host")); + label = gtk_label_new_with_mnemonic(_("_Host:")); gtk_misc_set_alignment(GTK_MISC(label), 1.0, 0.5); gtk_table_attach(GTK_TABLE(table), label, 0, 1, 0, 1, GTK_FILL, 0, 0, 0); @@ -1141,7 +1141,7 @@ hbox = gtk_hbox_new(TRUE, 5); gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); - label = gtk_label_new_with_mnemonic(_("Port")); + label = gtk_label_new_with_mnemonic(_("Port:")); gtk_misc_set_alignment(GTK_MISC(label), 1.0, 0.5); gtk_table_attach(GTK_TABLE(table), label, 0, 1, 1, 2, GTK_FILL, 0, 0, 0); @@ -1159,7 +1159,7 @@ gtk_entry_set_text(GTK_ENTRY(entry), buf); } - label = gtk_label_new_with_mnemonic(_("_User")); + label = gtk_label_new_with_mnemonic(_("_User:")); gtk_misc_set_alignment(GTK_MISC(label), 1.0, 0.5); gtk_table_attach(GTK_TABLE(table), label, 0, 1, 2, 3, GTK_FILL, 0, 0, 0); @@ -1176,7 +1176,7 @@ hbox = gtk_hbox_new(TRUE, 5); gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); - label = gtk_label_new_with_mnemonic(_("Pa_ssword")); + label = gtk_label_new_with_mnemonic(_("Pa_ssword:")); gtk_misc_set_alignment(GTK_MISC(label), 1.0, 0.5); gtk_table_attach(GTK_TABLE(table), label, 0, 1, 3, 4, GTK_FILL, 0, 0, 0);