[UI][CHG] Minor tweaking

- Change default window size (bigger)
This commit is contained in:
Linloir 2022-12-18 16:11:15 +08:00
parent e68149bd24
commit 60ecd08ed1
No known key found for this signature in database
GPG Key ID: 58EEB209A0F2C366
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ int main(int argc, char *argv[])
MainWindow w;
w.setMouseTracking(true);
w.resize(900, 600);
w.resize(1250, 750);
w.show();
return a.exec();

View File

@ -104,7 +104,7 @@ void SceneViewer::initializeGL() {
_objects.push_back(backpack2);
// Test Code End
_camera.setPosition(glm::vec3(0.0f, 0.0f, 5.0f));
_camera.setPosition(glm::vec3(0.0f, 0.0f, 10.0f));
}
void SceneViewer::resizeGL(int w, int h) {