We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d1a433 commit 9afd7dbCopy full SHA for 9afd7db
src/Windows/Window.php
@@ -186,12 +186,12 @@ public function maximizable($maximizable = true): static
186
187
public function minimized(): static
188
{
189
- $this->afterOpen(fn () => WindowFacade::minimize($this->id));
+ return $this->afterOpen(fn () => WindowFacade::minimize($this->id));
190
}
191
192
public function maximized(): static
193
194
- $this->afterOpen(fn () => WindowFacade::maximize($this->id));
+ return $this->afterOpen(fn () => WindowFacade::maximize($this->id));
195
196
197
public function closable($closable = true): static
0 commit comments