fead: load without animation

This commit is contained in:
semenov
2024-09-19 11:11:20 +03:00
parent f2163b97b5
commit a1a103ae1e
65 changed files with 5618 additions and 865 deletions

View File

@@ -1,4 +1,5 @@
#include "mainwindow.h"
#include "updatenotifywidget.h"
#include <QApplication>
#include <QTranslator>
@@ -8,6 +9,8 @@ int main(int argc, char *argv[])
QApplication a(argc, argv);
a.setWindowIcon(QIcon("./plane.png"));
MainWindow w;
UpdateNotifyWidget *notifyWidget = new UpdateNotifyWidget;
w.bindNotifyWidget(notifyWidget);
w.show();
return a.exec();
}