Reviewers: nigeltao,
Message:
Hello
nige...@golang.org (cc:
ta...@googlegroups.com),
I'd like you to review this change to
https://code.google.com/p/taowm/
Description:
taowm: turn off fullscreen when hiding a fullscreen window.
Please review this at
https://codereview.appspot.com/7201051/
Affected files:
M taowm/actions.go
Index: taowm/actions.go
===================================================================
--- a/taowm/actions.go
+++ b/taowm/actions.go
@@ -415,6 +415,9 @@
f.window, w.frame = nil, nil
w.configure()
}
+ if k.fullscreen {
+ doFullscreen(k, nil)
+ }
makeLists()
return true
}