From 79eca296caf9a4f7d567e9f0d1cef71e4a28d2ae Mon Sep 17 00:00:00 2001 From: Ivan Holmes Date: Mon, 4 Nov 2019 19:12:06 +0000 Subject: [PATCH] fixed updating chord --- gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui.py b/gui.py index e95b0b4..881fa70 100755 --- a/gui.py +++ b/gui.py @@ -401,7 +401,7 @@ class DocumentWindow(QMainWindow): self.doc.chordList[row] = Chord(cName) if self.window.guitarVoicingLineEdit.text(): try: - self.doc.chordList[-1].voicings['guitar'] = parseFingering(self.window.guitarVoicingLineEdit.text(), 'guitar') + self.doc.chordList[row].voicings['guitar'] = parseFingering(self.window.guitarVoicingLineEdit.text(), 'guitar') success = True except: VoicingWarningMessageBox().exec()