removed root window click handling
This commit is contained in:
		@@ -100,7 +100,6 @@ static Button buttons[] = {
 | 
				
			|||||||
	{ ClkClientWin,         MODKEY,         Button1,        movemouse,      {0} },
 | 
						{ ClkClientWin,         MODKEY,         Button1,        movemouse,      {0} },
 | 
				
			||||||
	{ ClkClientWin,         MODKEY,         Button2,        togglefloating, {0} },
 | 
						{ ClkClientWin,         MODKEY,         Button2,        togglefloating, {0} },
 | 
				
			||||||
	{ ClkClientWin,         MODKEY,         Button3,        resizemouse,    {0} },
 | 
						{ ClkClientWin,         MODKEY,         Button3,        resizemouse,    {0} },
 | 
				
			||||||
	{ ClkRootWin,           Button1Mask,    Button3,        spawn,          {.v = termcmd } },
 | 
					 | 
				
			||||||
	TAGBUTTONS(0)
 | 
						TAGBUTTONS(0)
 | 
				
			||||||
	TAGBUTTONS(1)
 | 
						TAGBUTTONS(1)
 | 
				
			||||||
	TAGBUTTONS(2)
 | 
						TAGBUTTONS(2)
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										4
									
								
								dwm.c
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								dwm.c
									
									
									
									
									
								
							@@ -60,7 +60,7 @@ enum { ColBorder, ColFG, ColBG, ColLast };              /* color */
 | 
				
			|||||||
enum { NetSupported, NetWMName, NetLast };              /* EWMH atoms */
 | 
					enum { NetSupported, NetWMName, NetLast };              /* EWMH atoms */
 | 
				
			||||||
enum { WMProtocols, WMDelete, WMName, WMState, WMLast };/* default atoms */
 | 
					enum { WMProtocols, WMDelete, WMName, WMState, WMLast };/* default atoms */
 | 
				
			||||||
enum { ClkLtSymbol = 64, ClkStatusText, ClkWinTitle,
 | 
					enum { ClkLtSymbol = 64, ClkStatusText, ClkWinTitle,
 | 
				
			||||||
       ClkClientWin, ClkRootWin, ClkLast };             /* clicks */
 | 
					       ClkClientWin, ClkLast };                         /* clicks */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/* typedefs */
 | 
					/* typedefs */
 | 
				
			||||||
typedef unsigned int uint;
 | 
					typedef unsigned int uint;
 | 
				
			||||||
@@ -312,7 +312,7 @@ buttonpress(XEvent *e) {
 | 
				
			|||||||
	Client *c;
 | 
						Client *c;
 | 
				
			||||||
	XButtonPressedEvent *ev = &e->xbutton;
 | 
						XButtonPressedEvent *ev = &e->xbutton;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	click = ClkRootWin;
 | 
						click = ClkLast;
 | 
				
			||||||
	if(ev->window == barwin) {
 | 
						if(ev->window == barwin) {
 | 
				
			||||||
		i = x = 0;
 | 
							i = x = 0;
 | 
				
			||||||
		do
 | 
							do
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user