File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change 1
- 126
1
+ 127
Original file line number Diff line number Diff line change @@ -44,16 +44,12 @@ namespace Lemon {
44
44
//
45
45
list << makeAbs (" /usr/share/lemon-lime/" + dirName);
46
46
list << makeAbs (" /usr/local/share/lemon-lime/" + dirName);
47
- // For AppImage?
48
- list << makeAbs (QCoreApplication::applicationDirPath () + " /../share/lemon-lime/" + dirName);
49
47
// For Snap
50
- #if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0)
51
48
if (qEnvironmentVariableIsSet (" SNAP" )) {
52
49
list << makeAbs (qEnvironmentVariable (" SNAP" ) + " /usr/share/lemon-lime/" + dirName);
53
50
}
54
51
if (qEnvironmentVariableIsSet (" APPIMAGE" ))
55
52
list << makeAbs (QCoreApplication::applicationDirPath () + " /../share/lemon-lime/" + dirName);
56
- #endif
57
53
#elif defined(Q_OS_MAC)
58
54
// macOS platform directories.
59
55
list << QDir (QCoreApplication::applicationDirPath () + " /../Resources/" + dirName).absolutePath ();
You can’t perform that action at this time.
0 commit comments