Skip to content

Commit

Permalink
#2391 fix window query property scratchpad flag
Browse files Browse the repository at this point in the history
  • Loading branch information
koekeishiya committed Aug 15, 2024
1 parent 817f6bd commit 136f25f
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 @@ -6,6 +6,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## [Unreleased]
### Changed
- Fix window query scratchpad property flag [#2391](https://github.com/koekeishiya/yabai/issues/2391)
- When a new window is added to a stack it is placed after the currently focused window (instead of the end) [#2387](https://github.com/koekeishiya/yabai/issues/2387)

## [7.1.2] - 2024-08-10
Expand Down
2 changes: 1 addition & 1 deletion src/window.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ enum window_property
WINDOW_PROPERTY_PID = 0x000000002,
WINDOW_PROPERTY_APP = 0x000000004,
WINDOW_PROPERTY_TITLE = 0x000000008,
WINDOW_PROPERTY_SCRATCHPAD = 0x100000010,
WINDOW_PROPERTY_SCRATCHPAD = 0x000000010,
WINDOW_PROPERTY_FRAME = 0x000000020,
WINDOW_PROPERTY_ROLE = 0x000000040,
WINDOW_PROPERTY_SUBROLE = 0x000000080,
Expand Down

0 comments on commit 136f25f

Please sign in to comment.