summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Linford <tlinford@users.noreply.github.com>2022-03-07 11:45:01 +0100
committerGitHub <noreply@github.com>2022-03-07 11:45:01 +0100
commit8d3bd3c9b011be9a22139b366b1569b10ef379f2 (patch)
tree233a44d866a68c6b3d6dafd48d63c82551119c35
parent30e34387f00703f0cecc7b053e5cb722cd8f5582 (diff)
fix(floating-panes): update tooltip after hiding floating panes with mouse (#1186)
-rw-r--r--zellij-server/src/screen.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/zellij-server/src/screen.rs b/zellij-server/src/screen.rs
index e9463015e..5a3f02793 100644
--- a/zellij-server/src/screen.rs
+++ b/zellij-server/src/screen.rs
@@ -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) => {