mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 00:56:10 +00:00 
			
		
		
		
	Need to always check focus even if not current window.
This commit is contained in:
		@@ -1265,10 +1265,11 @@ server_client_loop(void)
 | 
				
			|||||||
				break;
 | 
									break;
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		TAILQ_FOREACH(wp, &w->panes, entry) {
 | 
							TAILQ_FOREACH(wp, &w->panes, entry) {
 | 
				
			||||||
			if (wl != NULL && wp->fd != -1) {
 | 
								if (wp->fd != -1) {
 | 
				
			||||||
				if (focus)
 | 
									if (focus)
 | 
				
			||||||
					server_client_check_focus(wp);
 | 
										server_client_check_focus(wp);
 | 
				
			||||||
				server_client_check_resize(wp);
 | 
									if (wl != NULL)
 | 
				
			||||||
 | 
										server_client_check_resize(wp);
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
			wp->flags &= ~PANE_REDRAW;
 | 
								wp->flags &= ~PANE_REDRAW;
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user