From 9e218f1847f065a6637c7ca4bf4b5047b4b694c2 Mon Sep 17 00:00:00 2001 From: jacob1 Date: Tue, 8 Jan 2013 00:11:47 -0500 Subject: [PATCH] change right click button id to 4 for lua events, to match old tpt --- src/cat/LuaScriptInterface.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/cat/LuaScriptInterface.cpp b/src/cat/LuaScriptInterface.cpp index 49f1d70a7..8cf35c359 100644 --- a/src/cat/LuaScriptInterface.cpp +++ b/src/cat/LuaScriptInterface.cpp @@ -1653,6 +1653,8 @@ bool LuaScriptInterface::OnMouseMove(int x, int y, int dx, int dy) bool LuaScriptInterface::OnMouseDown(int x, int y, unsigned button) { + if (button == 3) + button = 4; luacon_mousedown = true; luacon_mousebutton = button; return luacon_mouseevent(x, y, button, LUACON_MDOWN, 0); @@ -1660,6 +1662,8 @@ bool LuaScriptInterface::OnMouseDown(int x, int y, unsigned button) bool LuaScriptInterface::OnMouseUp(int x, int y, unsigned button) { + if (button == 3) + button = 4; luacon_mousedown = false; return luacon_mouseevent(x, y, button, LUACON_MUP, 0); }