int height;
/** The xcb-id for the font */
xcb_font_t id;
-
- TAILQ_ENTRY(Font) fonts;
};
char *override_configpath = NULL;
bool autostart = true;
char *layout_path = NULL;
- bool delete_layout_path;
+ bool delete_layout_path = false;
bool only_check_config = false;
bool force_xinerama = false;
bool disable_signalhandler = false;
if (direction == TOK_UP || direction == TOK_LEFT) {
position = BEFORE;
next = TAILQ_PREV(above, nodes_head, nodes);
- } else if (direction == TOK_DOWN || direction == TOK_RIGHT) {
+ } else {
position = AFTER;
next = TAILQ_NEXT(above, nodes);
}