diff options
author | André Nusser <andre.nusser@googlemail.com> | 2018-06-10 13:53:06 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2018-08-12 11:13:52 +0200 |
commit | b64e858af397e51c1f1bad95a1747a54a85ab744 (patch) | |
tree | 9ebfee051a86b16906ab850eb75af0d1bc70b98c /plugingui/colour.h | |
parent | 3d218d5991a253f8d6a12db73908bead34d3e2da (diff) |
Add instrument label and highlight of drums.
Diffstat (limited to 'plugingui/colour.h')
-rw-r--r-- | plugingui/colour.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugingui/colour.h b/plugingui/colour.h index 232b0b9..0bfe80d 100644 --- a/plugingui/colour.h +++ b/plugingui/colour.h @@ -59,7 +59,7 @@ struct ColourHasher // TODO: replace by something reasonable std::size_t operator()(const Colour& colour) const { - return 7*colour.red() + 11*colour.green() + 13*colour.blue() + 17*colour.alpha(); + return 7*colour.red() + 11*colour.green() + 13*colour.blue()/* + 17*colour.alpha()*/; } }; |