Scrumplex moment

This commit is contained in:
dada513
2022-03-31 16:11:04 +02:00
parent 954074942e
commit 59b3e30821

View File

@ -1143,8 +1143,7 @@ std::vector<ITheme *> Application::getValidApplicationThemes()
bool Application::isFlatpak()
{
#ifdef Q_OS_LINUX
QFileInfo check_file("/.flatpak-info");
return check_file.exists();
return QFile::exists("/.flatpak-info");
#else
return false;
#endif