Skip to content

Commit

Permalink
koekeishiya#308 properly trigger window_destroyed signal
Browse files Browse the repository at this point in the history
  • Loading branch information
koekeishiya authored and brorbw committed Jan 28, 2020
1 parent 4b4af7e commit 32ca35a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Changed
- Fix regression causing window_destroyed signal to not be triggered (after adding app and title filter) [#308](https://github.com/koekeishiya/yabai/issues/308)

## [2.1.2] - 2019-11-10
### Changed
Expand Down
4 changes: 2 additions & 2 deletions doc/yabai.1
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
.\" Title: yabai
.\" Author: [see the "AUTHOR(S)" section]
.\" Generator: Asciidoctor 2.0.10
.\" Date: 2019-11-09
.\" Date: 2019-11-10
.\" Manual: Yabai Manual
.\" Source: Yabai
.\" Language: English
.\"
.TH "YABAI" "1" "2019-11-09" "Yabai" "Yabai Manual"
.TH "YABAI" "1" "2019-11-10" "Yabai" "Yabai Manual"
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.ss \n[.ss] 0
Expand Down
1 change: 0 additions & 1 deletion src/event.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ static bool event_signal_filter(struct signal *signal, enum event_type type, str
return regex_match(signal->app_regex_valid, &signal->app_regex, application->name) == REGEX_MATCH_NO;
} break;
case WINDOW_CREATED:
case WINDOW_DESTROYED:
case WINDOW_FOCUSED:
case WINDOW_MOVED:
case WINDOW_RESIZED:
Expand Down

0 comments on commit 32ca35a

Please sign in to comment.