]> git.sesse.net Git - nageru/blobdiff - main.cpp
Various tweaks to the UI layout.
[nageru] / main.cpp
index 2b5dc066266261881b8c662fe5914560139614a1..b39208fab53630eda018d94201d19ce94d366596 100644 (file)
--- a/main.cpp
+++ b/main.cpp
@@ -14,6 +14,8 @@
 int main(int argc, char *argv[])
 {
        setenv("QT_XCB_GL_INTEGRATION", "xcb_egl", 0);
+       setlinebuf(stdout);
+       av_register_all();
 
        QCoreApplication::setAttribute(Qt::AA_ShareOpenGLContexts, true);
        QApplication app(argc, argv);
@@ -31,7 +33,7 @@ int main(int argc, char *argv[])
        global_share_widget = new QGLWidget();
 
        MainWindow mainWindow;
-       mainWindow.resize(QSize(1500, 670));
+       mainWindow.resize(QSize(1500, 606));
        mainWindow.show();
 
        int rc = app.exec();