Skip to content

Commit

Permalink
fix(floating-panes): update tooltip after hiding floating panes with …
Browse files Browse the repository at this point in the history
…mouse (#1186)
  • Loading branch information
tlinford committed Mar 7, 2022
1 parent 30e3438 commit 8d3bd3c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions zellij-server/src/screen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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) => {
Expand All @@ -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) => {
Expand Down

0 comments on commit 8d3bd3c

Please sign in to comment.