Alf Gaida 20752f38c5
Adding upstream version 0.14.0.
Signed-off-by: Alf Gaida <agaida@siduction.org>
2019-01-26 13:48:18 +01:00

15 lines
388 B
C++

#include "application.h"
#include <libfm-qt/libfmqt.h>
int main(int argc, char** argv) {
// ensure that glib integration of Qt is not turned off
// This fixes #168: https://github.com/lxqt/pcmanfm-qt/issues/168
qunsetenv("QT_NO_GLIB");
PCManFM::Application app(argc, argv);
app.setAttribute(Qt::AA_UseHighDpiPixmaps, true);
app.init();
return app.exec();
}