Skip to content

Commit b4218cb

Browse files
committed
fix spacing from de-indentation
1 parent cb3ffb7 commit b4218cb

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Macropad_Hotkeys/code.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,14 @@ def switch(self):
5959
x = key_index % 3
6060
y = key_index // 3
6161
group.append(label.Label(terminalio.FONT, text='', color=0xFFFFFF,
62-
anchored_position=((macropad.display.width - 1) * x / 2,
62+
anchored_position=((macropad.display.width - 1) * x / 2,
6363
macropad.display.height - 1 -
6464
(3 - y) * 12),
65-
anchor_point=(x / 2, 1.0)))
65+
anchor_point=(x / 2, 1.0)))
6666
group.append(Rect(0, 0, macropad.display.width, 12, fill=0xFFFFFF))
6767
group.append(label.Label(terminalio.FONT, text='', color=0x000000,
68-
anchored_position=(macropad.display.width//2, -2),
69-
anchor_point=(0.5, 0.0)))
68+
anchored_position=(macropad.display.width//2, -2),
69+
anchor_point=(0.5, 0.0)))
7070
macropad.display.show(group)
7171

7272
# Load all the macro key setups from .py files in MACRO_FOLDER

0 commit comments

Comments
 (0)