forked from CryHavoc/dottes
Nerys next: L'Inconnu de Limoise.
No chords. Also fix up title field display to not put a space between items if 'The' item isn't all alphanumeric. So , L' works.
This commit is contained in:
parent
2477b37976
commit
a38378712a
|
@ -0,0 +1,11 @@
|
||||||
|
X: 1
|
||||||
|
T: Inconnu de Limoise, L'
|
||||||
|
C: Maxou Heintzen
|
||||||
|
M: 3/4
|
||||||
|
L: 1/8
|
||||||
|
Q: 1/4=104
|
||||||
|
K: G
|
||||||
|
D GA | B2 BB (3cBA | B3 B cd | c2 cB AG | A2 D2 GA |
|
||||||
|
B2 BB (3cBA | B3 B cd |c2 cB AG | A3 :|
|
||||||
|
B cd | e2 gf ef | d2 dc BA | GF GA BG | D4 GF |
|
||||||
|
E2 EF GA | G2F2 E2 | [1 F2 FG AB | A3 :| [2 FE FG AB | G3 |]
|
|
@ -137,7 +137,9 @@ def convertTitleToDisplay(t):
|
||||||
if p[1] == "":
|
if p[1] == "":
|
||||||
return t
|
return t
|
||||||
else:
|
else:
|
||||||
return p[2].strip() + " " + p[0].strip()
|
first = p[2].strip()
|
||||||
|
second = p[0].strip()
|
||||||
|
return (first + " " if first.isalnum() else first) + second
|
||||||
|
|
||||||
# Convert Key field from ABC to display, so G#dor->G# Dorian.
|
# Convert Key field from ABC to display, so G#dor->G# Dorian.
|
||||||
def convertKeyToDisplay(t):
|
def convertKeyToDisplay(t):
|
||||||
|
|
Loading…
Reference in New Issue