From: Steinar H. Gunderson Date: Sun, 4 Oct 2015 16:21:30 +0000 (+0200) Subject: Better aspect ratio to begin with -- hotfix until we get to lock the aspect ratio. X-Git-Tag: 1.0.0~307 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=9b3585ec99141758fb75f94b676e8f32d5a31b84;p=nageru Better aspect ratio to begin with -- hotfix until we get to lock the aspect ratio. --- diff --git a/main.cpp b/main.cpp index 8ebe6d2..9736395 100644 --- a/main.cpp +++ b/main.cpp @@ -29,7 +29,7 @@ int main(int argc, char *argv[]) global_share_widget = new QGLWidget(); MainWindow mainWindow; - mainWindow.resize(QSize(1280, 720)); + mainWindow.resize(QSize(1500, 720)); mainWindow.show(); int rc = app.exec();