From fb50badf00db0ba2da8a99aa75b489c620f8a971 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sun, 13 Apr 2014 18:05:07 -0400 Subject: 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. --- sysdata_windows.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sysdata_windows.go') 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{ -- cgit v1.2.3