diff options
author | Eddy Pedroni <eddy@0xf7.com> | 2022-01-03 19:14:04 +0100 |
---|---|---|
committer | Eddy Pedroni <eddy@0xf7.com> | 2022-01-03 19:14:04 +0100 |
commit | bfa2abe556269de927e399a0547b18126a78ff96 (patch) | |
tree | 7f830706db5f49c3c5034a2cf7fe46a60170451a /solo_tool_qt.py | |
parent | e35f7280760bf8ed37c76fffc4d53529aea5e168 (diff) |
Added test, some error checking in Qt interface
Diffstat (limited to 'solo_tool_qt.py')
-rw-r--r-- | solo_tool_qt.py | 6 |
1 files changed, 5 insertions, 1 deletions
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([]) |