Skip to content
Snippets Groups Projects
Commit 974f35f1 authored by Martin Hanzik's avatar Martin Hanzik Committed by Jan Trávníček
Browse files

Fix the output box being actually an input box

parent fe3a8c5c
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,7 @@ MainWindow::MainWindow()
Registry::initialize();
 
this->scene->addItem(new InputGraphicsBox(std::make_unique<InputModelBox>(), {0, 200}));
outputBox = new GraphicsBox(std::make_unique<InputModelBox>(), {400, 200});;
outputBox = new GraphicsBox(std::make_unique<OutputModelBox>(), {400, 200});;
this->scene->addItem(outputBox);
}
 
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment