applied fix of toggletag by Jan Kaliszewski
This commit is contained in:
		
							
								
								
									
										6
									
								
								dwm.c
									
									
									
									
									
								
							
							
						
						
									
										6
									
								
								dwm.c
									
									
									
									
									
								
							@@ -1469,8 +1469,12 @@ togglefloating(const Arg *arg) {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
void
 | 
					void
 | 
				
			||||||
toggletag(const Arg *arg) {
 | 
					toggletag(const Arg *arg) {
 | 
				
			||||||
	unsigned int mask = sel->tags ^ (arg->ui & TAGMASK);
 | 
						unsigned int mask;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if (!sel)
 | 
				
			||||||
 | 
							return;
 | 
				
			||||||
 | 
						
 | 
				
			||||||
 | 
						mask = sel->tags ^ (arg->ui & TAGMASK);
 | 
				
			||||||
	if(sel && mask) {
 | 
						if(sel && mask) {
 | 
				
			||||||
		sel->tags = mask;
 | 
							sel->tags = mask;
 | 
				
			||||||
		arrange();
 | 
							arrange();
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user