We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f645088 commit 0ac7babCopy full SHA for 0ac7bab
2 files changed
config.def.h
@@ -82,7 +82,6 @@ static const int nmaster = 1; /* number of clients in master area */
82
static const int resizehints = 1; /* 1 means respect size hints in tiled resizals */
83
static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen window */
84
85
-#define FORCE_VSPLIT 1 /* nrowgrid layout: force two clients to always split vertically */
86
#include "vanitygaps.c"
87
88
/* mouse scroll resize */
vanitygaps.c
@@ -631,7 +631,7 @@ nrowgrid(Monitor *m)
631
return;
632
633
/* force 2 clients to always split vertically */
634
- if (FORCE_VSPLIT && n == 2)
+ if (n == 2)
635
rows = 1;
636
637
/* never allow empty rows */
0 commit comments