From b19e3d9d143a4bb5b82956314d491060679c9085 Mon Sep 17 00:00:00 2001 From: amaihoefner Date: Sat, 11 Jun 2022 20:43:36 +0200 Subject: fix: tab selection by left click in compact-bar (#1485) --- default-plugins/compact-bar/src/main.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'default-plugins') diff --git a/default-plugins/compact-bar/src/main.rs b/default-plugins/compact-bar/src/main.rs index cf85d5d9b..2d52a6f9d 100644 --- a/default-plugins/compact-bar/src/main.rs +++ b/default-plugins/compact-bar/src/main.rs @@ -115,11 +115,11 @@ impl ZellijPlugin for State { if self.should_render && self.mouse_click_pos > len_cnt && self.mouse_click_pos <= len_cnt + bar_part.len - && idx > 2 + && idx > 3 { - // First three elements of tab_line are "Zellij", session name and empty thing, hence the idx > 2 condition. - // Tabs are indexed starting from 1, therefore we need subtract 2 below. - switch_tab_to(TryInto::::try_into(idx).unwrap() - 2); + // First three elements of tab_line are "Zellij", session name and mode, hence the idx > 3 condition. + // Tabs are indexed starting from 1, therefore we need subtract 3 below. + switch_tab_to(TryInto::::try_into(idx).unwrap() - 3); } len_cnt += bar_part.len; } -- cgit v1.2.3