Skip to content

Commit

Permalink
fix for LCD GUI
Browse files Browse the repository at this point in the history
  • Loading branch information
corrados committed Nov 12, 2023
1 parent 1bc3656 commit fc8d72c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/edrumulus_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ def lcd_update():
elif lcd_menu_id == 1: # trigger menu
lcd.write_string(("A:" if auto_pad_sel else "") + "%s:%s" % (pad_names[sel_pad], cmd_names[sel_cmd]))
lcd.cursor_pos = (1, 4)
lcd.write_string("<%s>" % parse_cmd_param(sel_cmd))
lcd.write_string("<%s>" % parse_cmd_param(sel_cmd).split(" ")[0]) # split to only show pad type short name

def lcd_init():
global lcd
Expand Down

0 comments on commit fc8d72c

Please sign in to comment.