We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59d14af commit 61ce411Copy full SHA for 61ce411
main.py
@@ -20,7 +20,6 @@ def __init__(self):
20
self.save_button = Button(self.top_frame, text="Save", command=self.save_image)
21
self.save_button.pack(side="left")
22
23
- # Add a close button to the top frame
24
self.close_button = Button(self.top_frame, text="Close", command=self.close_current_tab)
25
self.close_button.pack(side="left")
26
@@ -31,7 +30,6 @@ def __init__(self):
31
30
self.root.bind("<Left>", self.switch_tab_left)
32
self.root.bind("<Control-s>", self.save_image)
33
34
- # Enable drag and drop
35
self.root.drop_target_register(DND_FILES)
36
self.root.dnd_bind('<<Drop>>', self.on_drop)
37
0 commit comments