From 2a6c730f02fcd127cc831297eacca6f5a80fb44c Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Sat, 11 Jan 2003 20:48:52 +0000 Subject: [PATCH] add aliases for mouse buttons --- src/bindings.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/bindings.cc b/src/bindings.cc index 4a2e7db8..a8dfaed0 100644 --- a/src/bindings.cc +++ b/src/bindings.cc @@ -23,15 +23,15 @@ namespace ob { static bool buttonvalue(const std::string &button, unsigned int *val) { - if (button == "1" || button == "Button1") { + if (button == "Left" || button == "1" || button == "Button1") { *val |= Button1; - } else if (button == "2" || button == "Button2") { + } else if (button == "Middle" || button == "2" || button == "Button2") { *val |= Button2; - } else if (button == "3" || button == "Button3") { + } else if (button == "Right" || button == "3" || button == "Button3") { *val |= Button3; - } else if (button == "4" || button == "Button4") { + } else if (button == "Up" || button == "4" || button == "Button4") { *val |= Button4; - } else if (button == "5" || button == "Button5") { + } else if (button == "Down" || button == "5" || button == "Button5") { *val |= Button5; } else return false; -- 2.45.2