summaryrefslogtreecommitdiffstats
path: root/zellij-server/src/route.rs
diff options
context:
space:
mode:
Diffstat (limited to 'zellij-server/src/route.rs')
-rw-r--r--zellij-server/src/route.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/zellij-server/src/route.rs b/zellij-server/src/route.rs
index 53ccf964d..a4ab8dcf9 100644
--- a/zellij-server/src/route.rs
+++ b/zellij-server/src/route.rs
@@ -659,6 +659,12 @@ pub(crate) fn route_action(
.send_to_screen(ScreenInstruction::NextSwapLayout(client_id))
.with_context(err_context)?;
},
+ Action::QueryTabNames => {
+ session
+ .senders
+ .send_to_screen(ScreenInstruction::QueryTabNames(client_id))
+ .with_context(err_context)?;
+ },
}
Ok(should_break)
}