ColBorder has been moved to the enum with ColFg and ColBg.
This commit is contained in:
		
				
					committed by
					
						
						Hiltjo Posthuma
					
				
			
			
				
	
			
			
			
						parent
						
							db2236001c
						
					
				
				
					commit
					3cb34830eb
				
			
							
								
								
									
										2
									
								
								drw.h
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								drw.h
									
									
									
									
									
								
							@@ -12,7 +12,7 @@ typedef struct Fnt {
 | 
				
			|||||||
	struct Fnt *next;
 | 
						struct Fnt *next;
 | 
				
			||||||
} Fnt;
 | 
					} Fnt;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
enum { ColFg, ColBg }; /* Clr scheme index */
 | 
					enum { ColFg, ColBg, ColBorder }; /* Clr scheme index */
 | 
				
			||||||
typedef XftColor Clr;
 | 
					typedef XftColor Clr;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
typedef struct {
 | 
					typedef struct {
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										1
									
								
								dwm.c
									
									
									
									
									
								
							
							
						
						
									
										1
									
								
								dwm.c
									
									
									
									
									
								
							@@ -56,7 +56,6 @@
 | 
				
			|||||||
#define HEIGHT(X)               ((X)->h + 2 * (X)->bw)
 | 
					#define HEIGHT(X)               ((X)->h + 2 * (X)->bw)
 | 
				
			||||||
#define TAGMASK                 ((1 << LENGTH(tags)) - 1)
 | 
					#define TAGMASK                 ((1 << LENGTH(tags)) - 1)
 | 
				
			||||||
#define TEXTW(X)                (drw_fontset_getwidth(drw, (X)) + lrpad)
 | 
					#define TEXTW(X)                (drw_fontset_getwidth(drw, (X)) + lrpad)
 | 
				
			||||||
#define ColBorder               2
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
/* enums */
 | 
					/* enums */
 | 
				
			||||||
enum { CurNormal, CurResize, CurMove, CurLast }; /* cursor */
 | 
					enum { CurNormal, CurResize, CurMove, CurLast }; /* cursor */
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user