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 a9316c1 commit ba824f5Copy full SHA for ba824f5
Image_Viewing_GUI/script.py
@@ -18,7 +18,7 @@ def next():
18
global itemslist
19
n=(n+1)%len(itemslist)
20
img1 = itemslist[n]
21
- print(img1)
+
22
image = Image.open(path+"/"+img1)
23
copy_image=image.copy()
24
photo=ImageTk.PhotoImage(image)
@@ -32,7 +32,7 @@ def previous():
32
33
n=(n-1)%len(itemslist)
34
35
36
37
38
0 commit comments