Skip to content

Commit

Permalink
Update main.py
Browse files Browse the repository at this point in the history
  • Loading branch information
chicken-nugget1104 committed Feb 14, 2025
1 parent 00c37ef commit 0c583ca
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,9 @@ def create_menu(self):
view_menu.add_command(label="Zoom In", command=self.zoom_in, accelerator="Ctrl+")
view_menu.add_command(label="Zoom Out", command=self.zoom_out, accelerator="Ctrl+-")
view_menu.add_command(label="Reset Zoom", command=self.zoom_reset, accelerator="Ctrl+R")
#view_menu.add_command(label="CCZ (DEBUG ONLY)", command=self.whatisthecurrentzoom)
if VERSION.endswith("-DEV"):
view_menu.add_command(label="CCZ (DEBUG ONLY)", command=self.whatisthecurrentzoom)

view_menu.add_checkbutton(label="Word Wrap", variable=self.word_wrap, command=self.toggle_word_wrap)
menu_bar.add_cascade(label="View", menu=view_menu)

Expand Down

0 comments on commit 0c583ca

Please sign in to comment.