Skip to content

Commit df3993b

Browse files
Update app_single.py
1. UI界面显示的按键对应 进行对齐
1 parent 00d17f4 commit df3993b

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

src/app_single.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,18 @@ def _clear_mapping(self):
3333

3434
def _render_mapping(self):
3535
self._clear_mapping()
36+
3637
def row(lbl, txt):
3738
r = ttk.Frame(self.mapping_frame)
3839
r.pack(fill="x", pady=1)
39-
ttk.Label(r, text=lbl, width=10, anchor="w").pack(side="left")
40-
ttk.Label(r, text=txt, anchor="w").pack(side="left")
40+
ttk.Label(r, text=lbl, width=7, anchor="w").pack(side="left")
41+
ttk.Label(r, text=txt, anchor="w", font=("Courier New", 10)).pack(side="left")
4142
self._mapping_rows.append(r)
4243
if self.get_instrument() == 'piano':
43-
row("低音 L:", "L1-L7 -> a s d f g h j")
44-
row("中音 M:", "M1-M7 -> q w e r t y u")
45-
row("高音 H:", "H1-H7 -> 1 2 3 4 5 6 7")
46-
row("和弦 :", "C Dm Em F G Am G7 -> z x c v b n m")
44+
row("低音 L:", "L1 L2 L3 L4 L5 L6 L7 -> A S D F G H J")
45+
row("中音 M:", "M1 M2 M3 M4 M5 M6 M7 -> Q W E R T Y U")
46+
row("高音 H:", "H1 H2 H3 H4 H5 H6 H7 -> 1 2 3 4 5 6 7")
47+
row("和弦 :", "C Dm Em F G Am G7 -> Z X C V B N M")
4748
else:
4849
row("架子鼓:", "踩镲闭->1 高音吊镲->2 一嗵鼓->3 二嗵鼓->4 叮叮镲->5")
4950
row("", "踩镲开->Q 军鼓->W 底鼓->E 落地嗵鼓->R 中音吊镲->T")

0 commit comments

Comments
 (0)