diff options
author | David Robillard <d@drobilla.net> | 2023-01-12 15:30:44 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-01-14 11:53:28 -0500 |
commit | 1e48f8bbfdb0f1ce2f9132d604405fb72d160d9d (patch) | |
tree | 2fbb2e70f5bf5e7f7e021dafb51dd508944426f2 /test | |
parent | bd4f79646f623e929e6aa22bea028952b515aeef (diff) | |
download | pugl-1e48f8bbfdb0f1ce2f9132d604405fb72d160d9d.tar.gz pugl-1e48f8bbfdb0f1ce2f9132d604405fb72d160d9d.tar.bz2 pugl-1e48f8bbfdb0f1ce2f9132d604405fb72d160d9d.zip |
Windows: Add PUGL_DARK_FRAME hint
This allows dark applications to visually integrate more nicely in Windows 10.
A little thing, but it really goes a long way to make programs not look out of
place and half-baked.
Diffstat (limited to 'test')
-rw-r--r-- | test/test_utils.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test_utils.h b/test/test_utils.h index e26e970..785c8c7 100644 --- a/test/test_utils.h +++ b/test/test_utils.h @@ -296,6 +296,8 @@ puglViewHintString(const PuglViewHint hint) return "Refresh rate"; case PUGL_VIEW_TYPE: return "View type"; + case PUGL_DARK_FRAME: + return "Dark frame"; } return "Unknown"; |