mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 00:56:10 +00:00 
			
		
		
		
	Do not clear region based on current cursor position, this is not necessary
anymore and causes problems, GitHub issue 2735.
This commit is contained in:
		
							
								
								
									
										9
									
								
								tty.c
									
									
									
									
									
								
							
							
						
						
									
										9
									
								
								tty.c
									
									
									
									
									
								
							@@ -958,13 +958,8 @@ tty_redraw_region(struct tty *tty, const struct tty_ctx *ctx)
 | 
			
		||||
		return;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if (ctx->ocy < ctx->orupper || ctx->ocy > ctx->orlower) {
 | 
			
		||||
		for (i = ctx->ocy; i < ctx->sy; i++)
 | 
			
		||||
			tty_draw_pane(tty, ctx, i);
 | 
			
		||||
	} else {
 | 
			
		||||
		for (i = ctx->orupper; i <= ctx->orlower; i++)
 | 
			
		||||
			tty_draw_pane(tty, ctx, i);
 | 
			
		||||
	}
 | 
			
		||||
	for (i = ctx->orupper; i <= ctx->orlower; i++)
 | 
			
		||||
		tty_draw_pane(tty, ctx, i);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/* Is this position visible in the pane? */
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user