Skip to content

Commit

Permalink
ColBorder has been moved to the enum with ColFg and ColBg.
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Drelich authored and hiltjo committed Mar 14, 2018
1 parent db22360 commit 3cb3483
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion drw.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ typedef struct Fnt {
struct Fnt *next;
} Fnt;

enum { ColFg, ColBg }; /* Clr scheme index */
enum { ColFg, ColBg, ColBorder }; /* Clr scheme index */
typedef XftColor Clr;

typedef struct {
Expand Down
1 change: 0 additions & 1 deletion dwm.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@
#define HEIGHT(X) ((X)->h + 2 * (X)->bw)
#define TAGMASK ((1 << LENGTH(tags)) - 1)
#define TEXTW(X) (drw_fontset_getwidth(drw, (X)) + lrpad)
#define ColBorder 2

/* enums */
enum { CurNormal, CurResize, CurMove, CurLast }; /* cursor */
Expand Down

0 comments on commit 3cb3483

Please sign in to comment.