mirror of
https://github.com/zellij-org/zellij.git
synced 2024-11-23 08:57:14 +03:00
fix: tab selection by left click in compact-bar (#1485)
This commit is contained in:
parent
0e897ba156
commit
b19e3d9d14
@ -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::<u32>::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::<u32>::try_into(idx).unwrap() - 3);
|
||||
}
|
||||
len_cnt += bar_part.len;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user