*nxin = 2;
*xin_areas = g_new(Rect, *nxin + 1);
RECT_SET((*xin_areas)[0], 0, 0, w/2, h);
- RECT_SET((*xin_areas)[1], w/2, 0, w-(w/2), h);
+ RECT_SET((*xin_areas)[1], w/2, 0, w-(w/2), h/2);
}
else {
*nxin = 1;
Time screen_desktop_user_time = CurrentTime;
/*! An array of desktops, holding array of areas per monitor */
-static Rect *monitor_area;
+static Rect *monitor_area = NULL;
/*! An array of desktops, holding an array of struts */
-static GSList **struts_top;
-static GSList **struts_left;
-static GSList **struts_right;
-static GSList **struts_bottom;
+static GSList **struts_top = NULL;
+static GSList **struts_left = NULL;
+static GSList **struts_right = NULL;
+static GSList **struts_bottom = NULL;
static ObPagerPopup *desktop_cycle_popup;
#define RESET_STRUT_LIST(sl) \
{if (sl) for (i = 0; sl[i]; ++i) g_slist_free(sl[i]); \
sl = g_renew(GSList*, sl, screen_num_desktops + 1); \
- memset(sl, NULL, sizeof(GSList*) * screen_num_desktops);}
+ memset(sl, 0, sizeof(GSList*) * screen_num_desktops + 1);}
#define ADD_STRUT_TO_LIST(sl, d, s) \
{for (i = 0; i < screen_num_desktops; ++i) \