comparison src/buddy_chat.c @ 483:1a9d2b345b79

[gaim-migrate @ 493] I tried to make some of the buttons more of a standard size. Who knows. Who cares. committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Mon, 10 Jul 2000 06:59:44 +0000
parents 6a92cd7322cc
children a15d87ea1d4c
comparison
equal deleted inserted replaced
482:cf6b2efaac35 483:1a9d2b345b79
114 gtk_widget_show(icon_i); 114 gtk_widget_show(icon_i);
115 115
116 gtk_widget_show(button_box); 116 gtk_widget_show(button_box);
117 117
118 gtk_container_add(GTK_CONTAINER(join), button_box); 118 gtk_container_add(GTK_CONTAINER(join), button_box);
119 gtk_widget_set_usize(join, 75, 30);
119 120
120 /* End of OK Button */ 121 /* End of OK Button */
121 122
122 /* Build Cancel Button */ 123 /* Build Cancel Button */
123 124
136 gtk_widget_show(icon_i); 137 gtk_widget_show(icon_i);
137 138
138 gtk_widget_show(button_box); 139 gtk_widget_show(button_box);
139 140
140 gtk_container_add(GTK_CONTAINER(cancel), button_box); 141 gtk_container_add(GTK_CONTAINER(cancel), button_box);
142
143 gtk_widget_set_usize(cancel, 75, 30);
141 144
142 /* End of Cancel Button */ 145 /* End of Cancel Button */
143 146
144 gtk_box_pack_start(GTK_BOX(bbox), join, FALSE, FALSE, 5); 147 gtk_box_pack_start(GTK_BOX(bbox), join, FALSE, FALSE, 5);
145 gtk_box_pack_end(GTK_BOX(bbox), cancel, FALSE, FALSE, 5); 148 gtk_box_pack_end(GTK_BOX(bbox), cancel, FALSE, FALSE, 5);