instruments in alphabetic order
Browse files- playground.py +1 -1
playground.py
CHANGED
@@ -118,7 +118,7 @@ def instrument_row(default_inst, row_id):
|
|
118 |
row = gr.Variable(row_id)
|
119 |
with gr.Column(scale=1, min_width=50):
|
120 |
inst = gr.Dropdown(
|
121 |
-
[inst["transfer_to"] for inst in INSTRUMENT_TRANSFER_CLASSES]
|
122 |
+ ["Drums"],
|
123 |
value=default_inst,
|
124 |
label="Instrument",
|
|
|
118 |
row = gr.Variable(row_id)
|
119 |
with gr.Column(scale=1, min_width=50):
|
120 |
inst = gr.Dropdown(
|
121 |
+
sorted([inst["transfer_to"] for inst in INSTRUMENT_TRANSFER_CLASSES])
|
122 |
+ ["Drums"],
|
123 |
value=default_inst,
|
124 |
label="Instrument",
|