changeset 10193:17dcff7a5c77

[gaim-migrate @ 11308] I replaced the currently logo with a modified version created by Steven Garrity. This one is wider and less-tall. Nathan Fredrickson sent this to gaim-devel in Februrary and I just realized that I like it. Thanks guys! I like it because there's no more empty gray-space to the left and right of the logo. And I think it creates a bolder distinction between the login window and the buddy list. I also removed the version number from the about window, since it's super-imposed on the logo. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Tue, 16 Nov 2004 02:56:09 +0000
parents 025e119f95f9
children 55ea700c49d4
files src/connection.c src/gtkdialogs.c src/stock.c
diffstat 3 files changed, 2 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- a/src/connection.c	Tue Nov 16 02:47:14 2004 +0000
+++ b/src/connection.c	Tue Nov 16 02:56:09 2004 +0000
@@ -352,7 +352,7 @@
 			gaim_log_write(log, GAIM_MESSAGE_SYSTEM,
 						   gaim_account_get_username(account), gc->login_time,
 						   msg);
-			g_free(msg);						   
+			g_free(msg);
 		}
 
 		gaim_signal_emit(gaim_connections_get_handle(), "signed-on", gc);
--- a/src/gtkdialogs.c	Tue Nov 16 02:47:14 2004 +0000
+++ b/src/gtkdialogs.c	Tue Nov 16 02:56:09 2004 +0000
@@ -163,14 +163,12 @@
 	GtkWidget *hbox;
 	GtkWidget *vbox;
 	GtkWidget *logo;
-	GtkWidget *label;
 	GtkWidget *frame;
 	GtkWidget *text;
 	GtkWidget *bbox;
 	GtkWidget *button;
 	GtkTextIter iter;
 	GString *str;
-	gchar *labeltext;
 	int i;
 
 	if (about != NULL) {
@@ -195,14 +193,6 @@
 	logo = gtk_image_new_from_stock(GAIM_STOCK_LOGO, gtk_icon_size_from_name(GAIM_ICON_SIZE_LOGO));
 	gtk_box_pack_start(GTK_BOX(vbox), logo, FALSE, FALSE, 0);
 
-	labeltext = g_strdup_printf(_("<span weight=\"bold\" size=\"larger\">Gaim v%s</span>"), VERSION);
-	label = gtk_label_new(NULL);
-	gtk_label_set_markup(GTK_LABEL(label), labeltext);
-	gtk_label_set_line_wrap(GTK_LABEL(label), TRUE);
-	gtk_misc_set_alignment(GTK_MISC(label), 0.5, 0);
-	gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 0);
-	g_free(labeltext);
-
 	frame = gaim_gtk_create_imhtml(FALSE, &text, NULL);
 	gtk_box_pack_start(GTK_BOX(vbox), frame, TRUE, TRUE, 0);
 
--- a/src/stock.c	Tue Nov 16 02:47:14 2004 +0000
+++ b/src/stock.c	Tue Nov 16 02:56:09 2004 +0000
@@ -218,7 +218,7 @@
 	gtk_widget_destroy(win);
 
 	/* register logo icon size */
-	gtk_icon_size_register(GAIM_ICON_SIZE_LOGO, 210, 150);
+	gtk_icon_size_register(GAIM_ICON_SIZE_LOGO, 330, 90);
 
 	g_object_unref(G_OBJECT(icon_factory));