1
0
Fork 0

added support for keys without letters

This commit is contained in:
sspanak 2025-02-17 12:39:29 +02:00 committed by Dimo Karaivanov
parent c844db1fa1
commit afa509cee0
4 changed files with 4 additions and 3 deletions

View file

@ -279,7 +279,7 @@ static def extractSoundFromLine(String line) {
static def isLayoutLine(String line) {
return line.matches('\\s+- \\[.+?\\].*') && !line.find('\\d+]')
return line.matches('\\s+- \\[.*?\\].*') && !line.find('\\d+]')
}
//////////////////// VALIDATION ////////////////////