mirror of
				https://github.com/tmux/tmux.git
				synced 2025-10-26 12:27:15 +00:00 
			
		
		
		
	Need to call recalculate_sizes() when changing window with the mouse,
from marcel partap.
This commit is contained in:
		| @@ -282,16 +282,19 @@ server_client_check_mouse( | ||||
| 	    options_get_number(oo, "mouse-select-window")) { | ||||
| 		if (mouse->b == MOUSE_UP && c->last_mouse.b != MOUSE_UP) { | ||||
| 			status_set_window_at(c, mouse->x); | ||||
| 			recalculate_sizes(); | ||||
| 			return; | ||||
| 		} | ||||
| 		if (mouse->b & MOUSE_45) { | ||||
| 			if ((mouse->b & MOUSE_BUTTON) == MOUSE_1) { | ||||
| 				session_previous(c->session, 0); | ||||
| 				server_redraw_session(s); | ||||
| 				recalculate_sizes(); | ||||
| 			} | ||||
| 			if ((mouse->b & MOUSE_BUTTON) == MOUSE_2) { | ||||
| 				session_next(c->session, 0); | ||||
| 				server_redraw_session(s); | ||||
| 				recalculate_sizes(); | ||||
| 			} | ||||
| 			return; | ||||
| 		} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Nicholas Marriott
					Nicholas Marriott