feat: adding resizing

This commit is contained in:
Lucas Oskorep
2025-10-16 00:46:33 -04:00
parent fe069b1de0
commit c4d4768d29
4 changed files with 175 additions and 23 deletions

View File

@@ -104,6 +104,9 @@ export class WindowWrapper {
this._window.connect("position-changed", (_metaWindow) => {
windowManager.handleWindowPositionChanged(this);
}),
this._window.connect("size-changed", (_metaWindow) => {
windowManager.handleWindowSizeChanged(this);
}),
);
}