mirror of
https://github.com/zellij-org/zellij.git
synced 2024-11-25 23:33:08 +03:00
Fix colored pane frames in mirrored sessions (#2625)
* server/panes/tiled: Fix colored frames in mirrored sessions. Colored frames were previously ignored because they were treated like floating panes when rendering tiled panes. * CHANGELOG: Add PR #2625 * server/tab/unit: Fix unit tests for server.
This commit is contained in:
parent
5bf421ecdc
commit
fa8ef2a973
@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
||||
* fix(tab-bar,compact-bar): tab switching with mouse sometimes not working (https://github.com/zellij-org/zellij/pull/2587)
|
||||
* feat(status-bar): supermode to prevent colliding keybindings (https://github.com/zellij-org/zellij/pull/2619)
|
||||
* fix(rendering): occasional glitches while resizing (https://github.com/zellij-org/zellij/pull/2621)
|
||||
* fix(rendering): colored paneframes in mirrored sessions (https://github.com/zellij-org/zellij/pull/2625)
|
||||
|
||||
## [0.37.2] - 2023-06-20
|
||||
* hotfix: include theme files into binary (https://github.com/zellij-org/zellij/pull/2566)
|
||||
|
@ -623,7 +623,7 @@ impl TiledPanes {
|
||||
{ self.connected_clients.borrow().iter().copied().collect() };
|
||||
let multiple_users_exist_in_session = { self.connected_clients_in_app.borrow().len() > 1 };
|
||||
let mut client_id_to_boundaries: HashMap<ClientId, Boundaries> = HashMap::new();
|
||||
let active_panes = if self.session_is_mirrored || floating_panes_are_visible {
|
||||
let active_panes = if floating_panes_are_visible {
|
||||
HashMap::new()
|
||||
} else {
|
||||
self.active_panes
|
||||
|
@ -1,6 +1,5 @@
|
||||
---
|
||||
source: zellij-server/src/tab/./unit/tab_integration_tests.rs
|
||||
assertion_line: 4762
|
||||
expression: snapshot
|
||||
---
|
||||
00 (C): I am a tab bar
|
||||
@ -20,7 +19,7 @@ expression: snapshot
|
||||
14 (C): │ ││ ││ │
|
||||
15 (C): │ ││ ││ │
|
||||
16 (C): │ ││ ││ │
|
||||
17 (C): └───────────────────────────────────────┘└──────────────────────────────────────┘└──────────────────────────────────────┘
|
||||
17 (C): └───────────────────────────────────────┘└──────────────────────────────────────┘└─ <ENTER> to run, <Ctrl-c> to exit ───┘
|
||||
18 (C): I am a
|
||||
19 (C): status bar
|
||||
|
||||
|
@ -1,6 +1,5 @@
|
||||
---
|
||||
source: zellij-server/src/tab/./unit/tab_integration_tests.rs
|
||||
assertion_line: 4992
|
||||
expression: snapshot
|
||||
---
|
||||
00 (C): I am a
|
||||
@ -10,7 +9,7 @@ expression: snapshot
|
||||
04 (C): │ Waiting to run: command1 │
|
||||
05 (C): │ │
|
||||
06 (C): │ <ENTER> to run, <Ctrl-c> to exit │
|
||||
07 (C): └───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
|
||||
07 (C): └─ <ENTER> to run, <Ctrl-c> to exit ────────────────────────────────────────────────────────────────────────────────────┘
|
||||
08 (C): ┌ command2 ─────────────────────────────────────────────────────────────────────────────────────────────────────────────┐
|
||||
09 (C): │ │
|
||||
10 (C): │ Waiting to run: command2 │
|
||||
|
@ -1,6 +1,5 @@
|
||||
---
|
||||
source: zellij-server/src/tab/./unit/tab_integration_tests.rs
|
||||
assertion_line: 4904
|
||||
expression: snapshot
|
||||
---
|
||||
00 (C): I am a
|
||||
@ -16,7 +15,7 @@ expression: snapshot
|
||||
10 (C): │ Waiting to run: command1 │
|
||||
11 (C): │ │
|
||||
12 (C): │ <ENTER> to run, <Ctrl-c> to exit │
|
||||
13 (C): └───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
|
||||
13 (C): └─ <ENTER> to run, <Ctrl-c> to exit ────────────────────────────────────────────────────────────────────────────────────┘
|
||||
14 (C): ┌ command2 ─────────────────────────────────────────────────────────────────────────────────────────────────────────────┐
|
||||
15 (C): │ Waiting to run: command2 │
|
||||
16 (C): │ │
|
||||
|
@ -1,6 +1,5 @@
|
||||
---
|
||||
source: zellij-server/src/tab/./unit/tab_integration_tests.rs
|
||||
assertion_line: 5035
|
||||
expression: snapshot
|
||||
---
|
||||
00 (C): ┌ Pane #2 ──────────────────────────────────────────────────────────────────────────────────────────────────────────────┐
|
||||
@ -10,7 +9,7 @@ expression: snapshot
|
||||
04 (C): │ Waiting to run: command1 │
|
||||
05 (C): │ │
|
||||
06 (C): │ <ENTER> to run, <Ctrl-c> to exit │
|
||||
07 (C): └───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
|
||||
07 (C): └─ <ENTER> to run, <Ctrl-c> to exit ────────────────────────────────────────────────────────────────────────────────────┘
|
||||
08 (C): ┌ command2 ─────────────────────────────────────────────────────────────────────────────────────────────────────────────┐
|
||||
09 (C): │ │
|
||||
10 (C): │ Waiting to run: command2 │
|
||||
|
Loading…
Reference in New Issue
Block a user