summaryrefslogtreecommitdiff
path: root/plugingui/colour.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugingui/colour.h')
-rw-r--r--plugingui/colour.h2
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()*/;
}
};