fix(floating-panes): update tooltip after hiding floating panes with mouse (#1186)

This commit is contained in:
Thomas Linford 2022-03-07 11:45:01 +01:00 committed by GitHub
parent 30e34387f0
commit 8d3bd3c9b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1211,6 +1211,7 @@ pub(crate) fn screen_thread_main(
.unwrap()
.handle_left_click(&point, client_id);
screen.update_tabs();
screen.render();
}
ScreenInstruction::RightClick(point, client_id) => {
@ -1219,6 +1220,7 @@ pub(crate) fn screen_thread_main(
.unwrap()
.handle_right_click(&point, client_id);
screen.update_tabs();
screen.render();
}
ScreenInstruction::MouseRelease(point, client_id) => {