diff options
| author | Pietro Gagliardi <[email protected]> | 2014-06-09 17:28:12 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-06-09 17:28:12 -0400 |
| commit | bd2317777e12754a45c551c98f4ea2a92d94c253 (patch) | |
| tree | a5c8f9fcd38dc3fc285d064ca767c1d18c7bc55e | |
| parent | 2a878f0e914fb7cdff9cb1deefb628562facd302 (diff) | |
Resolved vertical alignment of labels on Windows.
| -rw-r--r-- | sysdata_windows.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdata_windows.go b/sysdata_windows.go index b5c26db..7e0335c 100644 --- a/sysdata_windows.go +++ b/sysdata_windows.go @@ -86,7 +86,7 @@ var classTypes = [nctypes]*classData{ c_label: &classData{ name: toUTF16("STATIC"), // SS_NOPREFIX avoids accelerator translation; SS_LEFTNOWORDWRAP clips text past the end - // TODO find out if the default behavior is vertically align to top + // controls are vertically aligned to the top by default (thanks Xeek in irc.freenode.net/#winapi) style: _SS_NOPREFIX | _SS_LEFTNOWORDWRAP | controlstyle, xstyle: 0 | controlxstyle, }, |
