Skip to content

Commit

Permalink
koekeishiya#1557 fix issue with toggling window split for inactive sp…
Browse files Browse the repository at this point in the history
…ace/display
  • Loading branch information
koekeishiya authored and shinyquagsire23 committed Jun 6, 2023
1 parent 0c155f4 commit 941d78f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
### Changed
- Fixed issue with window focusing caused by incorrectly intercepting a synthesized mouse event [#1551](https://github.com/koekeishiya/yabai/issues/1551)
- Fixed issue with window warping across displays with only a single window tiled at both displays [#1577](https://github.com/koekeishiya/yabai/issues/1577)
- Fixed issue preventing window split from being toggled for windwos on an inactive space/display [#1557](https://github.com/koekeishiya/yabai/issues/1557)

## [5.0.2] - 2022-12-16
### Changed
Expand Down
2 changes: 1 addition & 1 deletion src/space_manager.c
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ struct view *space_manager_tile_window_on_space(struct space_manager *sm, struct

void space_manager_toggle_window_split(struct space_manager *sm, struct window *window)
{
struct view *view = space_manager_find_view(sm, space_manager_active_space());
struct view *view = space_manager_find_view(sm, window_space(window));
if (view->layout != VIEW_BSP) return;

struct window_node *node = view_find_window_node(view, window->id);
Expand Down

0 comments on commit 941d78f

Please sign in to comment.