regression: unset keepBelow when fullscreened

This commit is contained in:
Eon S. Jeon 2019-02-24 15:30:21 +09:00
parent 534d8803eb
commit 096ce54642

View File

@ -111,6 +111,8 @@ class Window {
public commit() {
if (this.state === WindowState.Tile)
this.window.commit(this.geometry, this.noBorder, true);
else if (this.state === WindowState.FullScreen)
this.window.commit(undefined, undefined, false);
}
public visible(ctx: IDriverContext): boolean {