don't resize clients on commit
It creates an infinite commit-resize loop when scale != 1
This commit is contained in:
		
							
								
								
									
										6
									
								
								dwl.c
									
									
									
									
									
								
							
							
						
						
									
										6
									
								
								dwl.c
									
									
									
									
									
								
							@@ -768,12 +768,6 @@ void
 | 
			
		||||
commitnotify(struct wl_listener *listener, void *data)
 | 
			
		||||
{
 | 
			
		||||
	Client *c = wl_container_of(listener, c, commit);
 | 
			
		||||
	struct wlr_box box = {0};
 | 
			
		||||
	client_get_geometry(c, &box);
 | 
			
		||||
 | 
			
		||||
	if (c->mon && !wlr_box_empty(&box) && (box.width != c->geom.width - 2 * c->bw
 | 
			
		||||
			|| box.height != c->geom.height - 2 * c->bw))
 | 
			
		||||
		c->isfloating ? resize(c, c->geom, 1) : arrange(c->mon);
 | 
			
		||||
 | 
			
		||||
	/* mark a pending resize as completed */
 | 
			
		||||
	if (c->resize && c->resize <= c->surface.xdg->current.configure_serial)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user