Work in progress.

merge-requests/1/head
Teuniz 2018-03-19 12:45:34 +01:00
rodzic a7eb6a1cac
commit fcf19fb16b
2 zmienionych plików z 8 dodań i 1 usunięć

Wyświetl plik

@ -35,7 +35,7 @@
#define PROGRAM_NAME "DSRemote"
#define PROGRAM_VERSION "0.35_1801061817"
#define PROGRAM_VERSION "0.35_1803191244"
#define MAX_PATHLEN 4096

Wyświetl plik

@ -1,6 +1,8 @@
#include <QApplication>
#include <QStyle>
#include <QStyleFactory>
#include "mainwindow.h"
@ -11,6 +13,11 @@ int main(int argc, char *argv[])
// app.setAttribute(Qt::AA_DontUseNativeMenuBar);
#if QT_VERSION >= 0x050000
qApp->setStyle(QStyleFactory::create("Fusion"));
#endif
qApp->setStyleSheet("QLabel, QMessageBox { messagebox-text-interaction-flags: 5; }");
class UI_Mainwindow MainWindow;
return app.exec();