--- a/src/buddy.c Wed Apr 12 06:51:37 2000 +0000 +++ b/src/buddy.c Wed Apr 12 08:13:22 2000 +0000 @@ -276,7 +276,7 @@ applet_widget_register_callback(APPLET_WIDGET(applet), "buddy", _("Buddy List"), - (AppletCallbackFunc)make_buddy, + (AppletCallbackFunc)createOnlinePopup, NULL); return (TRUE); } @@ -294,7 +294,14 @@ } GtkRequisition gnome_buddy_get_dimentions(){ - return blist->requisition; + if (general_options & OPT_GEN_SAVED_WINDOWS) { + GtkRequisition r; + r.width = blist_pos.width; + r.height = blist_pos.height; + return r; + } else { + return blist->requisition; + } } #endif