using None instead of 0 for trans
This commit is contained in:
		
							parent
							
								
									bfa5869da1
								
							
						
					
					
						commit
						2ce50a9cad
					
				
							
								
								
									
										4
									
								
								dwm.c
								
								
								
								
							
							
						
						
									
										4
									
								
								dwm.c
								
								
								
								
							| 
						 | 
					@ -865,7 +865,7 @@ killclient(const Arg *arg) {
 | 
				
			||||||
void
 | 
					void
 | 
				
			||||||
manage(Window w, XWindowAttributes *wa) {
 | 
					manage(Window w, XWindowAttributes *wa) {
 | 
				
			||||||
	Client *c, *t = NULL;
 | 
						Client *c, *t = NULL;
 | 
				
			||||||
	Window trans = 0;
 | 
						Window trans = None;
 | 
				
			||||||
	XWindowChanges wc;
 | 
						XWindowChanges wc;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if(!(c = calloc(1, sizeof(Client))))
 | 
						if(!(c = calloc(1, sizeof(Client))))
 | 
				
			||||||
| 
						 | 
					@ -909,7 +909,7 @@ manage(Window w, XWindowAttributes *wa) {
 | 
				
			||||||
	else
 | 
						else
 | 
				
			||||||
		applyrules(c);
 | 
							applyrules(c);
 | 
				
			||||||
	if(!c->isfloating)
 | 
						if(!c->isfloating)
 | 
				
			||||||
		c->isfloating = trans || c->isfixed;
 | 
							c->isfloating = trans != None || c->isfixed;
 | 
				
			||||||
	if(c->isfloating)
 | 
						if(c->isfloating)
 | 
				
			||||||
		XRaiseWindow(dpy, c->win);
 | 
							XRaiseWindow(dpy, c->win);
 | 
				
			||||||
	attach(c);
 | 
						attach(c);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue