aspects hints seem broken for fullscreen apps
This commit is contained in:
		
							
								
								
									
										4
									
								
								dwm.c
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								dwm.c
									
									
									
									
									
								
							@@ -1206,7 +1206,9 @@ resize(Client *c, int x, int y, int w, int h, Bool sizehints) {
 | 
				
			|||||||
		h -= c->baseh;
 | 
							h -= c->baseh;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		/* adjust for aspect limits */
 | 
							/* adjust for aspect limits */
 | 
				
			||||||
		if (c->minay > 0 && c->maxay > 0 && c->minax > 0 && c->maxax > 0) {
 | 
							if(c->minax != c->maxax && c->minay != c->maxay 
 | 
				
			||||||
 | 
							&& c->minax > 0 && c->maxax > 0 && c->minay > 0 && c->maxay > 0)
 | 
				
			||||||
 | 
							{
 | 
				
			||||||
			if (w * c->maxay > h * c->maxax)
 | 
								if (w * c->maxay > h * c->maxax)
 | 
				
			||||||
				w = h * c->maxax / c->maxay;
 | 
									w = h * c->maxax / c->maxay;
 | 
				
			||||||
			else if (w * c->minay < h * c->minax)
 | 
								else if (w * c->minay < h * c->minax)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user