mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 00:56:10 +00:00 
			
		
		
		
	Do not let the size of the pane status screen go negative.
This commit is contained in:
		@@ -290,7 +290,10 @@ screen_redraw_make_pane_status(struct client *c, struct window *w,
 | 
				
			|||||||
	format_defaults(ft, c, NULL, NULL, wp);
 | 
						format_defaults(ft, c, NULL, NULL, wp);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	expanded = format_expand_time(ft, fmt);
 | 
						expanded = format_expand_time(ft, fmt);
 | 
				
			||||||
	wp->status_size = width = wp->sx - 4;
 | 
						if (wp->sx < 4)
 | 
				
			||||||
 | 
							wp->status_size = width = 0;
 | 
				
			||||||
 | 
						else
 | 
				
			||||||
 | 
							wp->status_size = width = wp->sx - 4;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	memcpy(&old, &wp->status_screen, sizeof old);
 | 
						memcpy(&old, &wp->status_screen, sizeof old);
 | 
				
			||||||
	screen_init(&wp->status_screen, width, 1, 0);
 | 
						screen_init(&wp->status_screen, width, 1, 0);
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user