summaryrefslogtreecommitdiffstats
path: root/zellij-server
diff options
context:
space:
mode:
authorThomas Linford <tlinford@users.noreply.github.com>2022-10-31 17:04:38 +0100
committerGitHub <noreply@github.com>2022-10-31 17:04:38 +0100
commit855711ebb8ab2a726b27880c1f1d64414bf3ddba (patch)
tree4a4e583ec0fbf41784d851d4c721fd019ac3c4a8 /zellij-server
parent5c2f5f84708fa6fe7076189f262b6ec62a29363a (diff)
feat(mouse): allow toggling mouse mode at runtime (#1883)
Diffstat (limited to 'zellij-server')
-rw-r--r--zellij-server/src/route.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/zellij-server/src/route.rs b/zellij-server/src/route.rs
index 015b00108..0d2da7b7d 100644
--- a/zellij-server/src/route.rs
+++ b/zellij-server/src/route.rs
@@ -611,6 +611,7 @@ pub(crate) fn route_action(
.send_to_screen(instruction)
.with_context(err_context)?;
},
+ Action::ToggleMouseMode => {}, // Handled client side
}
Ok(should_break)
}