Skip to content

Commit

Permalink
Removed donors from Help
Browse files Browse the repository at this point in the history
  • Loading branch information
LOUDO56 committed May 11, 2024
1 parent 7e3fe59 commit 388d0f9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/windows/main/menu_bar.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,8 @@ def __init__(self, parent):
my_menu.add_cascade(label="Help", menu=self.help_section)
self.help_section.add_command(label="Tutorial", command=lambda: OpenUrl("https://github.com/LOUDO56/PyMacroRecord/blob/main/TUTORIAL.md"))
self.help_section.add_command(label="About", command=lambda: About(self, parent, parent.version.version, parent.version.update))
self.help_section.add_command(label="Donors", command=lambda: Donors(self))

# Other section
self.other_section = Menu(my_menu, tearoff=0)
my_menu.add_cascade(label="Other", menu=self.other_section)
my_menu.add_cascade(label="Others", menu=self.other_section)
self.other_section.add_command(label="Donors", command=lambda: Donors(self))

0 comments on commit 388d0f9

Please sign in to comment.