We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 520394d commit 5a6404cCopy full SHA for 5a6404c
src/importexport/lyricsexport/internal/lrcwriter.cpp
@@ -225,6 +225,10 @@ void LRCWriter::findStaffVoiceAndLyricToExport(const mu::engraving::Score* score
225
}
226
227
228
+ // If we have already chosen the lowest/prioritized option we can return (no better option available)
229
+ if (lyricsFound && (staff == 0) && (voice == 0) && (lyricNumber == 0)) {
230
+ return;
231
+ }
232
233
234
src/importexport/lyricsexport/lyricsexportmodule.cpp
@@ -54,9 +54,5 @@ void LyricsExportModule::resolveImports()
54
55
void LyricsExportModule::onInit(const IApplication::RunMode& mode)
56
{
57
- if (mode == IApplication::RunMode::AudioPluginRegistration) {
58
- return;
59
- }
60
-
61
m_configuration->init();
62
0 commit comments