From 0c1a59434431d8e7ff8ac36e80b2557c80d24f4b Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 7 Oct 2019 20:37:12 -0700 Subject: [PATCH] Display the RGBA values of the system colors --- demo/SystemSettings.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/demo/SystemSettings.py b/demo/SystemSettings.py index 0625005c..5c4672b9 100644 --- a/demo/SystemSettings.py +++ b/demo/SystemSettings.py @@ -147,6 +147,9 @@ class SysColorPanel(SysPanelBase): nextx += self._maxw + 8 dc.DrawRectangle(nextx, nexty, self._box[0], self._box[1]) + nextx += self._box[0] + 12 + dc.DrawText('{}'.format(syscolor.Get()), nextx, nexty) + nextx = 10 nexty += 20