We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2baa0e commit 1ca2af4Copy full SHA for 1ca2af4
Image-scrape-download/image.py
@@ -58,7 +58,6 @@ def showImage():
58
59
# Add labels and buttons
60
my_label = HTMLLabel(root)
61
-my_label.pack(pady=20, padx=20)
62
63
search_box = Entry(root, font=("Helvetica 15"), bd = 2, width=60)
64
search_box.pack(side = TOP, pady=5, padx=15, ipadx=5)
@@ -68,6 +67,7 @@ def showImage():
68
67
69
save_btn = ttk.Button(text="Download Image!",command=saveImage,style='my.TButton')
70
save_btn.pack(side=TOP)
71
-
+
+my_label.pack(pady=20, padx=20)
72
# Execute Tkinter
73
root.mainloop()
0 commit comments