| 1116 | |
| 1117 | |
| 1118 | QString UBSettings::applicationShapeLibraryDirectory() |
| 1119 | { |
| 1120 | QString defaultRelativePath = QString("./library/shape"); |
| 1121 | |
| 1122 | QString configPath = value("Library/ShapeDirectory", QVariant(defaultRelativePath)).toString(); |
| 1123 | |
| 1124 | if (configPath.startsWith(".")) { |
| 1125 | return UBPlatformUtils::applicationResourcesDirectory() + configPath.right(configPath.size() - 1); |
| 1126 | } |
| 1127 | else { |
| 1128 | return configPath; |
| 1129 | } |
| 1130 | } |
| 1131 | |
| 1132 | QString UBSettings::applicationCustomizationDirectory() |
| 1133 | { |
no test coverage detected