# HG changeset patch # User Mark Doliner # Date 1043300343 0 # Node ID 4e5446a7131facf508c3b4f996cfcb61d94cd87d # Parent 3f09e83b569a0a9b2c94a292d4836af18e3d8bdf [gaim-migrate @ 4671] This is from Mr. McQueen. I believe it lets you put your buddy list at 0,0. I don't feel comfortable commiting the gtk2 away message patch... So I'll let someone else do it. NCSU beat Duke! Duke sucks! State rulz! committer: Tailor Script diff -r 3f09e83b569a -r 4e5446a7131f src/buddy.c --- a/src/buddy.c Thu Jan 23 01:01:54 2003 +0000 +++ b/src/buddy.c Thu Jan 23 05:39:03 2003 +0000 @@ -1827,13 +1827,13 @@ /* don't move it off screen */ if (blist_pos.x >= gdk_screen_width()) { blist_pos.x = gdk_screen_width() - 100; - } else if (blist_pos.x <= 0) { + } else if (blist_pos.x < 0) { blist_pos.x = 100; } if (blist_pos.y >= gdk_screen_height()) { blist_pos.y = gdk_screen_height() - 100; - } else if (blist_pos.y <= 0) { + } else if (blist_pos.y < 0) { blist_pos.y = 100; }