Clarify that overlay windows are not traversed by next/prev window actions
This commit is contained in:
parent
e09e707dc6
commit
e65521e9c2
1 changed files with 2 additions and 2 deletions
|
|
@ -886,11 +886,11 @@ def _next_window(self, delta: int = 1) -> None:
|
|||
self.current_layout.next_window(self.windows, delta)
|
||||
self.relayout_borders()
|
||||
|
||||
@ac('win', 'Focus the next window in the current tab')
|
||||
@ac('win', 'Focus the next window in the current tab. Does not traverse overlay windows.')
|
||||
def next_window(self) -> None:
|
||||
self._next_window()
|
||||
|
||||
@ac('win', 'Focus the previous window in the current tab')
|
||||
@ac('win', 'Focus the previous window in the current tab. Does not traverse overlay windows.')
|
||||
def previous_window(self) -> None:
|
||||
self._next_window(-1)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue