From 9c2f9d55479e7ee895e23d20a38526e1123b4320 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Wed, 15 Oct 2014 19:13:51 +0100 Subject: [PATCH] Make it more explicit that Key modifiers is a bit field --- src/keys.hh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/keys.hh b/src/keys.hh index 262603d8..d579395d 100644 --- a/src/keys.hh +++ b/src/keys.hh @@ -14,9 +14,9 @@ struct Key enum class Modifiers { None = 0, - Control = 1, - Alt = 2, - ControlAlt = 3 + Control = 1 << 0, + Alt = 1 << 1, + ControlAlt = Control | Alt }; enum NamedKey : Codepoint {