mirror of
				https://codeberg.org/dwl/dwl.git
				synced 2025-10-30 19:44:17 +00:00 
			
		
		
		
	fix spelling
This commit is contained in:
		
							parent
							
								
									f8373ccf25
								
							
						
					
					
						commit
						737688a6b1
					
				
							
								
								
									
										4
									
								
								dwl.c
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								dwl.c
									
									
									
									
									
								
							| @ -423,8 +423,8 @@ applybounds(Client *c, struct wlr_box *bbox) | |||||||
| 		/* try to set size hints */ | 		/* try to set size hints */ | ||||||
| 		c->geom.width = MAX(min.width + (2 * (int)c->bw), c->geom.width); | 		c->geom.width = MAX(min.width + (2 * (int)c->bw), c->geom.width); | ||||||
| 		c->geom.height = MAX(min.height + (2 * (int)c->bw), c->geom.height); | 		c->geom.height = MAX(min.height + (2 * (int)c->bw), c->geom.height); | ||||||
| 		/* Some clients set them max size to INT_MAX, which does not violates
 |                 /* Some clients set their max size to INT_MAX, which does not violate the
 | ||||||
| 		 * the protocol but its innecesary, they can set them max size to zero. */ |                  * protocol but its unnecesary, as they can set their max size to zero. */ | ||||||
| 		if (max.width > 0 && !(2 * c->bw > INT_MAX - max.width)) /* Checks for overflow */ | 		if (max.width > 0 && !(2 * c->bw > INT_MAX - max.width)) /* Checks for overflow */ | ||||||
| 			c->geom.width = MIN(max.width + (2 * c->bw), c->geom.width); | 			c->geom.width = MIN(max.width + (2 * c->bw), c->geom.width); | ||||||
| 		if (max.height > 0 && !(2 * c->bw > INT_MAX - max.height)) /* Checks for overflow */ | 		if (max.height > 0 && !(2 * c->bw > INT_MAX - max.height)) /* Checks for overflow */ | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 godalming123
						godalming123