Add default case which ignores other mouse buttons
This commit is contained in:
@@ -274,6 +274,9 @@ void ImGuiDrawer::OnMouseDown(MouseEvent* e) {
|
|||||||
case xe::ui::MouseEvent::Button::kRight: {
|
case xe::ui::MouseEvent::Button::kRight: {
|
||||||
io.MouseDown[1] = true;
|
io.MouseDown[1] = true;
|
||||||
} break;
|
} break;
|
||||||
|
default: {
|
||||||
|
// Ignored.
|
||||||
|
} break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -292,6 +295,9 @@ void ImGuiDrawer::OnMouseUp(MouseEvent* e) {
|
|||||||
case xe::ui::MouseEvent::Button::kRight: {
|
case xe::ui::MouseEvent::Button::kRight: {
|
||||||
io.MouseDown[1] = false;
|
io.MouseDown[1] = false;
|
||||||
} break;
|
} break;
|
||||||
|
default: {
|
||||||
|
// Ignored.
|
||||||
|
} break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user