Skip to content
Snippets Groups Projects
Commit 1c67f79b authored by Marton Ady's avatar Marton Ady
Browse files

correct argument order for Select()

parent 86342b23
Branches
Tags MF_v2.9.21
No related merge requests found
......@@ -1630,7 +1630,7 @@ void GeometryViewer::ManageEvent(SDL_Event* evt)
// Simple click, select/unselect facet
//SetCursor(CURSOR_BUSY);
GLToolkit::SetCursor(CURSOR_BUSY);
interfGeom->Select(mX - posX, mY - posY, !GetWindow()->IsShiftDown(), GetWindow()->IsCtrlDown(), GetWindow()->IsCapsLockOn(), this->width, this->height);
interfGeom->Select(mX - posX, mY - posY, this->width, this->height, !GetWindow()->IsShiftDown(), GetWindow()->IsCtrlDown(), GetWindow()->IsCapsLockOn());
//UpdateMouseCursor(cursorMode);
}
else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment