mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 00:56:10 +00:00 
			
		
		
		
	If the requested pane is already active, do not unzoom the window (or do
anything else). Prevents mouse clicking when zoomed causing unzoom, reported by Jose Antonio Delgado Alfonso (with a different fix).
This commit is contained in:
		@@ -77,12 +77,6 @@ cmd_select_pane_exec(struct cmd *self, struct cmd_q *cmdq)
 | 
				
			|||||||
	if ((wl = cmd_find_pane(cmdq, args_get(args, 't'), NULL, &wp)) == NULL)
 | 
						if ((wl = cmd_find_pane(cmdq, args_get(args, 't'), NULL, &wp)) == NULL)
 | 
				
			||||||
		return (CMD_RETURN_ERROR);
 | 
							return (CMD_RETURN_ERROR);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	server_unzoom_window(wp->window);
 | 
					 | 
				
			||||||
	if (!window_pane_visible(wp)) {
 | 
					 | 
				
			||||||
		cmdq_error(cmdq, "pane not visible");
 | 
					 | 
				
			||||||
		return (CMD_RETURN_ERROR);
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	if (args_has(self->args, 'P') || args_has(self->args, 'g')) {
 | 
						if (args_has(self->args, 'P') || args_has(self->args, 'g')) {
 | 
				
			||||||
		if (args_has(args, 'P')) {
 | 
							if (args_has(args, 'P')) {
 | 
				
			||||||
			style = args_get(args, 'P');
 | 
								style = args_get(args, 'P');
 | 
				
			||||||
@@ -111,11 +105,23 @@ cmd_select_pane_exec(struct cmd *self, struct cmd_q *cmdq)
 | 
				
			|||||||
		return (CMD_RETURN_ERROR);
 | 
							return (CMD_RETURN_ERROR);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (args_has(self->args, 'e'))
 | 
						if (args_has(self->args, 'e')) {
 | 
				
			||||||
		wp->flags &= ~PANE_INPUTOFF;
 | 
							wp->flags &= ~PANE_INPUTOFF;
 | 
				
			||||||
	else if (args_has(self->args, 'd'))
 | 
							return (CMD_RETURN_NORMAL);
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						if (args_has(self->args, 'd')) {
 | 
				
			||||||
		wp->flags |= PANE_INPUTOFF;
 | 
							wp->flags |= PANE_INPUTOFF;
 | 
				
			||||||
	else if (window_set_active_pane(wl->window, wp)) {
 | 
							return (CMD_RETURN_NORMAL);
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if (wp == wl->window->active)
 | 
				
			||||||
 | 
							return (CMD_RETURN_NORMAL);
 | 
				
			||||||
 | 
						server_unzoom_window(wp->window);
 | 
				
			||||||
 | 
						if (!window_pane_visible(wp)) {
 | 
				
			||||||
 | 
							cmdq_error(cmdq, "pane not visible");
 | 
				
			||||||
 | 
							return (CMD_RETURN_ERROR);
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						if (window_set_active_pane(wl->window, wp)) {
 | 
				
			||||||
		server_status_window(wl->window);
 | 
							server_status_window(wl->window);
 | 
				
			||||||
		server_redraw_window_borders(wl->window);
 | 
							server_redraw_window_borders(wl->window);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user