mirror of
https://github.com/irssi/irssi.git
synced 2026-08-08 19:30:15 +02:00
Merge pull request #57 from ailin-nemui/lr-skip-visible
Make window left/right skip windows that are already visible in other…
(cherry picked from commit 53187de6a2)
This commit is contained in:
parent
26c4cd8bbf
commit
baf2a43da2
1 changed files with 4 additions and 4 deletions
|
|
@ -1642,9 +1642,9 @@ static int window_refnum_left(int refnum, int wrap)
|
|||
break;
|
||||
|
||||
window = window_find_refnum(refnum);
|
||||
} while (!WINDOW_STICKY_MATCH(window, find_sticky));
|
||||
} while (!WINDOW_STICKY_MATCH(window, find_sticky) || is_window_visible(window));
|
||||
|
||||
return refnum;
|
||||
return refnum;
|
||||
}
|
||||
|
||||
static int window_refnum_right(int refnum, int wrap)
|
||||
|
|
@ -1664,9 +1664,9 @@ static int window_refnum_right(int refnum, int wrap)
|
|||
break;
|
||||
|
||||
window = window_find_refnum(refnum);
|
||||
} while (!WINDOW_STICKY_MATCH(window, find_sticky));
|
||||
} while (!WINDOW_STICKY_MATCH(window, find_sticky) || is_window_visible(window));
|
||||
|
||||
return refnum;
|
||||
return refnum;
|
||||
}
|
||||
|
||||
/* SYNTAX: WINDOW LEFT [-directional] */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue