summaryrefslogtreecommitdiff
path: root/drw.h
diff options
context:
space:
mode:
authorProsperousPotato <ProsperousPotato@users.noreply.github.com>2025-10-16 17:31:32 +0100
committerProsperousPotato <ProsperousPotato@users.noreply.github.com>2025-10-16 17:31:32 +0100
commitfa5ced5316895b2574f2b8a2af9994f7f7ff8838 (patch)
tree0b6e798ccba91e4e635a642bdb3469582415a541 /drw.h
parent178b7b559ee8b3af3d245d9c689c1b5c827a53ea (diff)
remove redundant drw_scm_create, && move Col{Float,Master} to the enum with Col{Fg,Bg,Border}
Diffstat (limited to 'drw.h')
-rw-r--r--drw.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drw.h b/drw.h
index 7719776..5a54185 100644
--- a/drw.h
+++ b/drw.h
@@ -12,7 +12,7 @@ typedef struct Fnt {
struct Fnt *next;
} Fnt;
-enum { ColFg, ColBg, ColBorder }; /* Clr scheme index */
+enum { ColFg, ColBg, ColBorder, ColFloat, ColMaster }; /* Clr scheme index */
typedef XftColor Clr;
typedef struct {