src/mainwindow.cpp

changeset 102
9f435f66bd0c
parent 97
d9a3b153f679
equal deleted inserted replaced
101:910890292639 102:9f435f66bd0c
403 { 403 {
404 pair.value->setChecked(pair.key == tool); 404 pair.value->setChecked(pair.key == tool);
405 } 405 }
406 } 406 }
407 } 407 }
408
409 void MainWindow::pointInCanvasClicked(const glm::vec3& point)
410 {
411 if (this->selectedTool != nullptr)
412 {
413 this->selectedTool->pointInCanvasClicked(point);
414 }
415 }

mercurial