Skip to content

Commit

Permalink
Fix wrong width and height of workspace canvas
Browse files Browse the repository at this point in the history
  • Loading branch information
robbr48 committed Jun 14, 2024
1 parent 2292e3f commit c3a4c48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion HopsanGUI/GraphicsView.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ GraphicsView::GraphicsView(ModelWidget *parent)
this->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred);
//This scene rect is needed because the old scene was (0,0) - (5000,5000) with center in (2500,2500).
//We need to ensure the center is still at the same position even though the scene is now larger.
this->setSceneRect(-25000+2500,-25000+2500,25000+2500,25000+2500);
this->setSceneRect(-25000+2500,-25000+2500,50000,50000);
this->centerOn(this->sceneRect().center());

mIsoColor = QColor("white");
Expand Down

0 comments on commit c3a4c48

Please sign in to comment.