Skip to content

Commit

Permalink
add warning message for default MIDI port
Browse files Browse the repository at this point in the history
  • Loading branch information
Bubobubobubobubo committed Aug 25, 2022
1 parent 3ed6c4f commit f078b7a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sardine/io/MidiIo.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ def choose_midi_port(self) -> str:
console = Console()
for (i, item) in enumerate(ports, start=1):
print(f"[color({i})] [{i}] {item}")
print("[red]Note: you don't have to hand pick your MIDI Port manually every time.")
print("[red]Check sardine-config to enter a permanent default MIDI port.")
nb = console.input("[bold yellow] Choose a MIDI Port: [/bold yellow]")
try:
nb = int(nb) - 1
Expand Down

0 comments on commit f078b7a

Please sign in to comment.