mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-03 16:46:18 +00:00 
			
		
		
		
	Fix resizing of control clients, should be ignored until SIZECHANGED flag set.
This commit is contained in:
		
							
								
								
									
										4
									
								
								window.c
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								window.c
									
									
									
									
									
								
							@@ -503,8 +503,8 @@ window_get_active_at(struct window *w, u_int x, u_int y)
 | 
			
		||||
	struct window_pane	*wp;
 | 
			
		||||
 | 
			
		||||
	TAILQ_FOREACH(wp, &w->panes, entry) {
 | 
			
		||||
                if (!window_pane_visible(wp))
 | 
			
		||||
                        continue;
 | 
			
		||||
		if (!window_pane_visible(wp))
 | 
			
		||||
			continue;
 | 
			
		||||
		if (x < wp->xoff || x > wp->xoff + wp->sx)
 | 
			
		||||
			continue;
 | 
			
		||||
		if (y < wp->yoff || y > wp->yoff + wp->sy)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user