Skip to content

Commit

Permalink
remove next and back button
Browse files Browse the repository at this point in the history
  • Loading branch information
erdogant committed Dec 30, 2024
1 parent fb739da commit 00c90c9
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions undouble/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,17 @@ def create_widgets(self):
self.nav_frame = tk.Frame(self.root)
self.nav_frame.pack(side="bottom", fill="x")

# Back Button
self.back_button = tk.Button(
self.nav_frame, text="Back", command=self.previous_group
)
self.back_button.pack(side="left", padx=10, pady=10)
# # Back Button
# self.back_button = tk.Button(
# self.nav_frame, text="Back", command=self.previous_group
# )
# self.back_button.pack(side="left", padx=10, pady=10)

# Next Button
self.next_button = tk.Button(
self.nav_frame, text="Next", command=self.next_group
)
self.next_button.pack(side="left", padx=10, pady=10)
# # Next Button
# self.next_button = tk.Button(
# self.nav_frame, text="Next", command=self.next_group
# )
# self.next_button.pack(side="left", padx=10, pady=10)

# Keep Selected Image Button
self.mark_unselected_button = tk.Button(
Expand Down

0 comments on commit 00c90c9

Please sign in to comment.