Window: update skipArrange comment

This commit is contained in:
Peter Fajdiga
2023-08-13 20:53:18 +02:00
parent 8bf076948a
commit 4bda4d0d7c

View File

@@ -29,7 +29,7 @@ class Window {
arrange(x: number, y: number, width: number, height: number) {
if (this.skipArrange) {
// window is being manually resized, prevent fighting with the user
// window is maximized, fullscreen, or being manually resized, prevent fighting with the user
return;
}
this.client.place(x, y, width, height);