fix: Correct right mouse button action name from 'rclick' to 'right'
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
d761b53d48
commit
5b637a48a7
|
|
@ -61,7 +61,7 @@ void PyScene::do_mouse_input(std::string button, std::string type)
|
||||||
|
|
||||||
void PyScene::doAction(std::string name, std::string type)
|
void PyScene::doAction(std::string name, std::string type)
|
||||||
{
|
{
|
||||||
if (name.compare("left") == 0 || name.compare("rclick") == 0 || name.compare("wheel_up") == 0 || name.compare("wheel_down") == 0) {
|
if (name.compare("left") == 0 || name.compare("right") == 0 || name.compare("wheel_up") == 0 || name.compare("wheel_down") == 0) {
|
||||||
do_mouse_input(name, type);
|
do_mouse_input(name, type);
|
||||||
}
|
}
|
||||||
else if ACTIONONCE("debug_menu") {
|
else if ACTIONONCE("debug_menu") {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue