summaryrefslogtreecommitdiff
path: root/sysdata_windows.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-04-13 18:05:07 -0400
committerPietro Gagliardi <[email protected]>2014-04-13 18:05:07 -0400
commitfb50badf00db0ba2da8a99aa75b489c620f8a971 (patch)
treebe2cf962c861c650607589cbb279364ccfd3107a /sysdata_windows.go
parente4c27a4a725c898ffb674f5202295dc96ce05ff1 (diff)
Fixed Area test time label weirdness by making Labels truncate their text instead of word-wrapping on all platforms. This doesn't explain GTK+/Wayland, alas.
Diffstat (limited to 'sysdata_windows.go')
-rw-r--r--sysdata_windows.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdata_windows.go b/sysdata_windows.go
index 57f7d58..9b0e25b 100644
--- a/sysdata_windows.go
+++ b/sysdata_windows.go
@@ -82,7 +82,8 @@ var classTypes = [nctypes]*classData{
},
c_label: &classData{
name: "STATIC",
- style: _SS_NOPREFIX | controlstyle,
+ // TODO add no-ellipsizing flags if I didn't do so already
+ style: _SS_NOPREFIX | _SS_LEFTNOWORDWRAP | controlstyle,
xstyle: 0 | controlxstyle,
},
c_listbox: &classData{