diff -r 1f42c03fafca -r 5760cbb32bc0 src/ui/canvas.cpp --- a/src/ui/canvas.cpp Sun Jul 25 20:29:14 2021 +0300 +++ b/src/ui/canvas.cpp Sun Jul 25 20:39:21 2021 +0300 @@ -292,7 +292,7 @@ { this->selection.clear(); this->compiler->setSelectedObjects(this->selection); - emit selectionChanged(this->selection); + Q_EMIT selectionChanged(this->selection); this->update(); } @@ -300,7 +300,7 @@ { this->selection.insert(id); this->compiler->setSelectedObjects(this->selection); - emit selectionChanged(this->selection); + Q_EMIT selectionChanged(this->selection); this->update(); }