mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-06-26 19:01:27 +00:00
Fix #9355
This commit is contained in:
parent
32f7f8d321
commit
df17142ea4
2 changed files with 5 additions and 2 deletions
|
|
@ -171,6 +171,9 @@ Detailed list of changes
|
|||
- ncurses: Fix ncurses not using dim because it is missing from the sgr property
|
||||
in terminfo even though it is present in the dim property.
|
||||
|
||||
- Fix a regression in the previous release that caused moving between neighbors
|
||||
in the vertical and horizontal layouts to go in the opposite direction (:iss:`9355`)
|
||||
|
||||
|
||||
0.45.0 [2025-12-24]
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
|
|
|||
|
|
@ -129,8 +129,8 @@ class Vertical(Layout):
|
|||
idx = groups.index(wg)
|
||||
lg = len(groups)
|
||||
if lg > 1:
|
||||
before = [groups[(idx - 1 + lg) % lg].id]
|
||||
after = [groups[(idx + 1) % lg].id]
|
||||
after = [groups[(idx - 1 + lg) % lg].id]
|
||||
before = [groups[(idx + 1) % lg].id]
|
||||
else:
|
||||
before, after = [], []
|
||||
ans: NeighborsMap = {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue