diff options
| author | Pietro Gagliardi <[email protected]> | 2014-02-25 01:02:16 -0500 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-02-25 01:02:16 -0500 |
| commit | 668de3bccb0d0b43c0bfcc461dce028e4f0cea9d (patch) | |
| tree | 5e7e17e6128b25ca5f8275faabfe6649933f2f17 /prefsize_windows.go | |
| parent | d8c0df79939c93bbe008049b84ea6f8ff85afe8b (diff) | |
Added most of the Windows implementation of ProgressBar. Now to grab the comctl32.dll stuff.
Diffstat (limited to 'prefsize_windows.go')
| -rw-r--r-- | prefsize_windows.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/prefsize_windows.go b/prefsize_windows.go index 2ee5d51..3dac306 100644 --- a/prefsize_windows.go +++ b/prefsize_windows.go @@ -53,6 +53,10 @@ var stdDlgSizes = [nctypes]dlgunits{ // height is not clearly defined here ("an integral number of items (3 items minimum)") so just use a three-line edit control height: 14 + 10 + 10, }, + c_progressbar: dlgunits{ + width: 237, // the first reference says 107 also works; TODO decide which to use + height: 8, + }, } var ( |
