From bfa2abe556269de927e399a0547b18126a78ff96 Mon Sep 17 00:00:00 2001 From: Eddy Pedroni Date: Mon, 3 Jan 2022 19:14:04 +0100 Subject: Added test, some error checking in Qt interface --- solo_tool_qt.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'solo_tool_qt.py') diff --git a/solo_tool_qt.py b/solo_tool_qt.py index 44f2ee4..2ae75a5 100644 --- a/solo_tool_qt.py +++ b/solo_tool_qt.py @@ -165,7 +165,11 @@ class MainWindow(QMainWindow, Ui_MainWindow): self.bSlider.setValue(int(ab[1] * POSITION_FACTOR)) def initMidi(self): - self.midiController.connect() + try: + self.midiController.connect() + except Exception as e: + print("Error: could not connect to MIDI controller") + print(e) if __name__ == '__main__': app = QApplication([]) -- cgit v1.2.3