Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix wrong width and height of workspace canvas #2231

Merged
merged 1 commit into from
Jun 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading