Mon, 19 Jul 2021 23:41:52 +0300
added preview layer code and fixed build warnings
#include "selecttool.h" SelectTool::SelectTool(QObject* parent) : BaseTool{parent} {} QString SelectTool::name() const { static const QString result = tr("Select"); return result; } QString SelectTool::toolTip() const { static const QString result = tr("Select elements from the model."); return result; }