Correctly set window height after i_fit_to_img()
This commit is contained in:
		
							parent
							
								
									f7301cf4f9
								
							
						
					
					
						commit
						a527025314
					
				
							
								
								
									
										3
									
								
								window.c
									
									
									
									
									
								
							
							
						
						
									
										3
									
								
								window.c
									
									
									
									
									
								
							| @ -287,6 +287,9 @@ bool win_moveresize(win_t *win, int x, int y, unsigned int w, unsigned int h) | |||||||
| 	if (win == NULL || win->xwin == None) | 	if (win == NULL || win->xwin == None) | ||||||
| 		return false; | 		return false; | ||||||
| 
 | 
 | ||||||
|  | 	/* caller knows nothing about the bar */ | ||||||
|  | 	h += win->bar.h; | ||||||
|  | 
 | ||||||
| 	x = MAX(0, x); | 	x = MAX(0, x); | ||||||
| 	y = MAX(0, y); | 	y = MAX(0, y); | ||||||
| 	w = MIN(w, win->env.scrw - 2 * win->bw); | 	w = MIN(w, win->env.scrw - 2 * win->bw); | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Bert Münnich
						Bert Münnich