From 061af6f928f4210966bedae69e652c7f88f21baf Mon Sep 17 00:00:00 2001 From: Christopher Vagnetoft Date: Mon, 9 Jan 2017 02:40:12 +0100 Subject: [PATCH] Fixed windowRestore() --- src/Window.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Window.php b/src/Window.php index b23b465..29b3953 100644 --- a/src/Window.php +++ b/src/Window.php @@ -124,7 +124,7 @@ class Window public function windowRestore() { - exec("xdotool windowmap {$this->windowId}"); + exec("xdotool windowmap {$this->windowId} windowraise {$this->windowId}"); return $this; }