summaryrefslogtreecommitdiffstats
path: root/zellij-server
diff options
context:
space:
mode:
authorKunal Mohan <kunalmohan99@gmail.com>2021-05-25 13:20:30 +0530
committerKunal Mohan <kunalmohan99@gmail.com>2021-05-25 13:20:30 +0530
commit151deb323578d599b9358db072b52ca712d950c6 (patch)
tree3fa7522c3045d59e5c88570b1125396086b2a5b1 /zellij-server
parentc60abe6ad634d9889a95c0043bfb0e05105a1e29 (diff)
remove shortened_text mode from status-bar
Diffstat (limited to 'zellij-server')
-rw-r--r--zellij-server/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/zellij-server/src/lib.rs b/zellij-server/src/lib.rs
index aeb13cb56..40fb87f7d 100644
--- a/zellij-server/src/lib.rs
+++ b/zellij-server/src/lib.rs
@@ -265,7 +265,7 @@ pub fn start_server(os_input: Box<dyn ServerOsApi>, socket_path: PathBuf) {
}
ServerInstruction::Render(output) => {
if *session_state.read().unwrap() == SessionState::Attached {
- // Here output is of type Option<String> sent by screen thread.
+ // Here output is of the type Option<String> sent by screen thread.
// If `Some(_)`- unwrap it and forward it to the client to render.
// If `None`- Send an exit instruction. This is the case when the user closes last Tab/Pane.
if let Some(op) = output {