Skip to content

Commit

Permalink
Migrating to CustomTkinter. (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
ATATC committed Feb 12, 2024
1 parent 17f11f1 commit e1f7a34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion leads_gui/prototype.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def layout(self, layout: list[list[str | Widget]]) -> None:
row = layout[i]
for j in range(len(row)):
widget = row[j]
widget.grid(row=i, column=j)
widget.grid(row=i, column=j, pady=2)

def window(self) -> Window:
return self._window
Expand Down

0 comments on commit e1f7a34

Please sign in to comment.