diff src/gaimrc.c @ 1420:9be6790092dc

[gaim-migrate @ 1430] backing out the change mishan sent in. it's not working right for me for some reason and i don't feel like trying to figure out why right now. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Tue, 23 Jan 2001 12:08:21 +0000
parents 42955549cdd9
children 5c67b8794991
line wrap: on
line diff
--- a/src/gaimrc.c	Sun Jan 21 02:55:14 2001 +0000
+++ b/src/gaimrc.c	Tue Jan 23 12:08:21 2001 +0000
@@ -652,6 +652,8 @@
 			blist_pos.y = atoi(p->value[1]);
 			blist_pos.width = atoi(p->value[2]);
 			blist_pos.height = atoi(p->value[3]);
+			blist_pos.xoff = atoi(p->value[4]);
+			blist_pos.yoff = atoi(p->value[5]);
 		}
 
 	}
@@ -673,8 +675,9 @@
 	fprintf(f, "\treport_idle { %d }\n", report_idle);
 	fprintf(f, "\tweb_browser { %d }\n", web_browser);
 	fprintf(f, "\tweb_command { %s }\n", web_command);
-	fprintf(f, "\tblist_pos { %d } { %d } { %d } { %d }\n",
-		blist_pos.x, blist_pos.y, blist_pos.width, blist_pos.height);
+	fprintf(f, "\tblist_pos { %d } { %d } { %d } { %d } { %d } { %d }\n",
+		blist_pos.x, blist_pos.y, blist_pos.width, blist_pos.height,
+		blist_pos.xoff, blist_pos.yoff);
 	fprintf(f, "}\n");
 }