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: fix a "go vet" warning.
Please review this at
https://codereview.appspot.com/225790043/
Affected files (+1, -1 lines):
M taowm/draw.go
Index: taowm/draw.go
===================================================================
--- a/taowm/draw.go
+++ b/taowm/draw.go
@@ -35,7 +35,7 @@
}
func unclip() {
- r := xp.Rectangle{0, 0, desktopWidth, desktopHeight}
+ r := xp.Rectangle{X: 0, Y: 0, Width: desktopWidth, Height: desktopHeight}
check(xp.SetClipRectanglesChecked(
xConn, xp.ClipOrderingUnsorted, desktopXGC, 0, 0, []xp.Rectangle{r}))
}