diff options
Diffstat (limited to 'wasp/icons.py')
| -rw-r--r-- | wasp/icons.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/wasp/icons.py b/wasp/icons.py index dec982a..ff39f8a 100644 --- a/wasp/icons.py +++ b/wasp/icons.py @@ -139,3 +139,14 @@ up_arrow = (16, 9, b'\x07\x02\r\x04\x0b\x06\t\x08\x07\n\x05\x0c\x03\x0e\x01 ') # 1-bit RLE, generated from res/down_arrow.png, 17 bytes down_arrow = (16, 9, b'\x00 \x01\x0e\x03\x0c\x05\n\x07\x08\t\x06\x0b\x04\r\x02\x07') + +# 2-bit RLE, generated from res/knob.png, 72 bytes +knob = ( + b'\x02' + b'((' + b'\x10\xc8\x1c\xd0\x16\xd4\x13\xd6\x10\xda\r\xdc\x0b\xde\t\xe0' + b'\x08\xe0\x07\xe2\x05\xe4\x04\xe4\x03\xe6\x02\xe6\x02\xe6\x02\xe6' + b'\x01\xff\xff\x02\x01\xe6\x02\xe6\x02\xe6\x02\xe6\x03\xe4\x04\xe4' + b'\x05\xe2\x07\xe0\x08\xe0\t\xde\x0b\xdc\r\xda\x10\xd6\x13\xd4' + b'\x16\xd0\x1c\xc8\x10' +) |
