From d0f9c9b8df0bfa05eb8aa7ad84e462a8d468a06b Mon Sep 17 00:00:00 2001 From: rafapaezbas <15270736+rafapaezbas@users.noreply.github.com> Date: Fri, 6 Jun 2025 20:51:03 +0200 Subject: [PATCH] removed animate gui option (#191) --- reference/pear/api.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/reference/pear/api.md b/reference/pear/api.md index b811fba..ba03560 100644 --- a/reference/pear/api.md +++ b/reference/pear/api.md @@ -484,7 +484,6 @@ Create a new `Window` instance. * `y ` - vertical window position (pixels) * `width ` - the width of the window (pixels) * `height ` - the height of the window (pixels) -* `animate ` Default: `false` - animate the dimensional change. MacOS only, ignored on other OS's. * `center ` - window minimum width (pixels) * `minHeight ` - window minimum height (pixels) @@ -527,7 +526,6 @@ Open the window. * `y ` - vertical window position (pixels) * `width ` - the width of the window (pixels) * `height ` - the height of the window (pixels) -* `animate ` Default: `false` - animate the dimensional change. MacOS only, ignored on other OS's. * `center ` - window minimum width (pixels) * `minHeight ` - window minimum height (pixels) @@ -633,7 +631,6 @@ await win.dimensions({ y: 50, width: 550, height: 300, - animate: true // only has an effect on macOS }) ``` @@ -646,7 +643,6 @@ Sets the dimensions of the window. * `y ` - the vertical position of the top of the window (pixels) * `width ` - the width of the window (pixels) * `height ` - the height of the window (pixels) -* `animate ` Default: `false` - animate the dimensional change. MacOS only, ignored on other OS's. * `position ` - may be `'center'` to set the window in the center of the screen or else `undefined`. **References**