summaryrefslogtreecommitdiff
path: root/redo/label_windows.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-08-14 17:13:52 -0400
committerPietro Gagliardi <[email protected]>2014-08-14 17:13:52 -0400
commit5ca3f0f0f9ccdb9fd2301e0b8b7503302c1b83c4 (patch)
tree1e3b945213b52df4a9ab7dc0a80c089eef8990ef /redo/label_windows.go
parent307577889e3fda28cad8f38ea34c184d9ab4a254 (diff)
Made Labels on Windows transparent.
Diffstat (limited to 'redo/label_windows.go')
-rw-r--r--redo/label_windows.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/redo/label_windows.go b/redo/label_windows.go
index a37bc9d..7dc8723 100644
--- a/redo/label_windows.go
+++ b/redo/label_windows.go
@@ -18,7 +18,7 @@ func finishNewLabel(text string, standalone bool) *label {
// SS_NOPREFIX avoids accelerator translation; SS_LEFTNOWORDWRAP clips text past the end
// controls are vertically aligned to the top by default (thanks Xeek in irc.freenode.net/#winapi)
C.SS_NOPREFIX | C.SS_LEFTNOWORDWRAP,
- 0)
+ C.WS_EX_TRANSPARENT)
l := &label{
_hwnd: hwnd,
standalone: standalone,