diff options
| author | Pietro Gagliardi <[email protected]> | 2014-02-24 11:55:38 -0500 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-02-24 11:55:38 -0500 |
| commit | 1d9a8834311ffc00bbd6dab1ee64f53f9e634db7 (patch) | |
| tree | daa3fe06b9a44edf827d9b2978fc34a3d75d6eec /init_windows.go | |
| parent | 3014a5edf10cd4cd05145c77e669060582f1ff65 (diff) | |
Re-added Windows font grabbing code. I won't use it just yet, since I only now realize I don't actually need it for preferred sizes, but eh
Diffstat (limited to 'init_windows.go')
| -rw-r--r-- | init_windows.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/init_windows.go b/init_windows.go index 9d22b34..5280742 100644 --- a/init_windows.go +++ b/init_windows.go @@ -66,6 +66,10 @@ func doWindowsInit() (err error) { if err != nil { return fmt.Errorf("error initializing standard window class auxiliary info: %v", err) } + err = getStandardWindowsFonts() + if err != nil { + return fmt.Errorf("error getting standard Windows fonts: %v", err) + } // TODO others return nil // all ready to go } |
