mirror of
https://github.com/tmate-io/tmate.git
synced 2026-08-04 16:42:08 +00:00
Use RB_MIN to get the lowest index for the current window when creating
grouped sessions, rather than using RB_ROOT.
This commit is contained in:
parent
379400cfa6
commit
a55e569af5
1 changed files with 1 additions and 1 deletions
|
|
@ -254,7 +254,7 @@ cmd_new_session_exec(struct cmd *self, struct cmd_q *cmdq)
|
|||
if (groupwith != NULL) {
|
||||
session_group_add(groupwith, s);
|
||||
session_group_synchronize_to(s);
|
||||
session_select(s, RB_ROOT(&s->windows)->idx);
|
||||
session_select(s, RB_MIN(winlinks, &s->windows)->idx);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue