Skip to content

Commit

Permalink
Fix fullscreen command for floating alacritty window
Browse files Browse the repository at this point in the history
Steps to reproduce:
1. `layout floating` for alacritty window
2. run `aerospace fullscreen`

Expected: the window takes the whole screen
Actual: the window is moved, but not resized

Should also _fix #335

A follow up on 35143f7 and
#143
  • Loading branch information
nikitabobko committed Nov 29, 2024
1 parent 43428fd commit de93349
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Sources/AppBundle/tree/Window.swift
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ extension Window {
var result: Bool = true
if let size { result = setSize(size) && result }
if let topLeft { result = setTopLeftCorner(topLeft) && result }
if let size { result = setSize(size) && result }
return result
}

Expand Down

0 comments on commit de93349

Please sign in to comment.