diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2025-10-24 19:54:07 -0400 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2025-10-24 19:54:07 -0400 |
| commit | 92a187eac695df28e8e45e7cb3ab04df4d44407c (patch) | |
| tree | 5cd41efcf5eee7503abbcf6b04b1dd52d813557c | |
| parent | 8d5eacbf53584d8d87c83cbe03d823f642e07dde (diff) | |
fix for_window[floating] criteria
floating criteria get parsed and added to the config criteria list but rejected by e1131844
| -rw-r--r-- | sway/criteria.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/sway/criteria.c b/sway/criteria.c index e200d4c8..a376c9d0 100644 --- a/sway/criteria.c +++ b/sway/criteria.c @@ -415,12 +415,6 @@ static bool criteria_matches_view(struct criteria *criteria, } #endif - if (criteria->floating) { - if (!container_is_floating(view->container)) { - return false; - } - } - if (criteria->tiling) { if (container_is_floating(view->container)) { return false; |
