Fix linux build.
This commit is contained in:
parent
c5363327e8
commit
198caa700b
16 changed files with 34 additions and 24 deletions
|
@ -15,7 +15,7 @@ void CanvasDrawingArea::addShapeAt(unsigned x, unsigned y)
|
|||
{
|
||||
if (mActiveDrawingCommand == CanvasDrawCommand::CIRCLE)
|
||||
{
|
||||
auto circle = std::make_unique<CircleNode>(Transform(DiscretePoint(x, y)), 5);
|
||||
auto circle = std::make_unique<CircleNode>(Transform(Point2(x, y)), 5);
|
||||
circle->setFillColor(Color(255, 0, 0));
|
||||
circle->setName("CanvasDrawingArea_CircleNode");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue