| 225 | } |
| 226 | |
| 227 | QString ConfigManager::vstEmbedMethod() const |
| 228 | { |
| 229 | QStringList methods = availabeVstEmbedMethods(); |
| 230 | QString defaultMethod = *(methods.end() - 1); |
| 231 | QString currentMethod = value( "ui", "vstembedmethod", defaultMethod ); |
| 232 | return methods.contains(currentMethod) ? currentMethod : defaultMethod; |
| 233 | } |
| 234 | |
| 235 | bool ConfigManager::hasWorkingDir() const |
| 236 | { |
no test coverage detected