From 01992d7697f78f40edd92aff31fc80ec21a5afec Mon Sep 17 00:00:00 2001 From: Christopher Vagnetoft Date: Tue, 27 Dec 2016 01:39:12 +0100 Subject: [PATCH] Bugfix --- src/Window.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Window.php b/src/Window.php index 36f4fec..b23b465 100644 --- a/src/Window.php +++ b/src/Window.php @@ -119,11 +119,13 @@ class Window public function windowMinimize() { exec("xdotool windowminimize {$this->windowId}"); + return $this; } public function windowRestore() { exec("xdotool windowmap {$this->windowId}"); + return $this; } public function dump()