X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fsession.c;h=064779875d5027017443cdaf4a778f2786ed5233;hb=6a00a44b999905538d86fc3d6609a0cbce781d5f;hp=e671a3194fe06490f632f18fc209b9f319a20958;hpb=2bd406a0a5c1db5e9d72c4947a234f2399a4125c;p=chaz%2Fopenbox diff --git a/openbox/session.c b/openbox/session.c index e671a319..06477987 100644 --- a/openbox/session.c +++ b/openbox/session.c @@ -190,7 +190,7 @@ void session_startup(int *argc, char ***argv) &cb, sm_id, &sm_id, SM_ERR_LEN, sm_err); if (sm_conn == NULL) - ob_debug("Failed to connect to session manager: %s", sm_err); + ob_debug("Failed to connect to session manager: %s\n", sm_err); else { SmPropValue val_prog; SmPropValue val_uid; @@ -337,8 +337,6 @@ static gboolean session_save() fprintf(f, "\n\n", sm_id); for (it = stacking_list; it; it = g_list_next(it)) { - guint num; - gint32 *dimensions; gint prex, prey, prew, preh; ObClient *c; gchar *t; @@ -358,15 +356,19 @@ static gboolean session_save() prey = c->area.y; prew = c->area.width; preh = c->area.height; - if (PROP_GETA32(c->window, openbox_premax, cardinal, - (guint32**)&dimensions, &num)) { - if (num == 4) { - prex = dimensions[0]; - prey = dimensions[1]; - prew = dimensions[2]; - preh = dimensions[3]; - } - g_free(dimensions); + if (c->fullscreen) { + prex = c->pre_fullscreen_area.x; + prey = c->pre_fullscreen_area.x; + prew = c->pre_fullscreen_area.width; + preh = c->pre_fullscreen_area.height; + } + if (c->max_horz) { + prex = c->pre_max_area.x; + prew = c->pre_max_area.width; + } + if (c->max_vert) { + prey = c->pre_max_area.y; + preh = c->pre_max_area.height; } fprintf(f, "\n", c->sm_client_id);