Skip to content

Commit

Permalink
Update mainGUI.py
Browse files Browse the repository at this point in the history
  • Loading branch information
multiverseweb authored Oct 1, 2024
1 parent 0504554 commit 6cdaa40
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions software/mainGUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,7 @@ def main():
● The data can also be stored for later use.\n\n\n\n\n<--- You can visit our website to know more :)\n''')
text.pack(pady=20,padx=40,side=TOP,anchor=W,fill=BOTH)

image = Image.open("/Users/iamte/OneDrive/Desktop/Dataverse/software/images/preview.png")
image = Image.open("software/images/preview.png")
resize_image = image.resize((580, 370))
preview = ImageTk.PhotoImage(resize_image)
preview_image=Label(bg='#000000',image = preview, borderwidth=1, relief="solid",padx=15,pady=15)
Expand Down Expand Up @@ -810,7 +810,7 @@ def dark(window):
root.title("Dataverse")
root.minsize(600,300)

bg=Image.open('/Users/iamte/OneDrive/Desktop/Dataverse/software/images/background.png')
bg=Image.open('software/images/background.png')

# Resize the image in the given (width, height)
img=bg.resize((1400,860))
Expand All @@ -822,14 +822,14 @@ def dark(window):
label1.place(x = 200, y = 0)

dark(root)
photo = PhotoImage(file = "/Users/iamte/OneDrive/Desktop/Dataverse/software/images/2dlogo.png")
photo = PhotoImage(file = "software/images/2dlogo.png")
root.iconphoto(False, photo)
root.configure(bg="black")
top=Frame(root,bg="#1a1a1a",width=100)
title=Label(top,font="Courier 15 bold",fg='#ffffff',bg='#1a1a1a',text="Dataverse")
title.grid(row = 0, column = 1,padx=0,pady=(20,10))
top.pack(side=TOP,fill=X)
image = Image.open("/Users/iamte/OneDrive/Desktop/Dataverse/software/images/3dlogo.png")
image = Image.open("software/images/3dlogo.png")
resize_image = image.resize((50, 50))
logo = ImageTk.PhotoImage(resize_image)
label = Label(top,bg='#1a1a1a',image = logo)
Expand All @@ -848,4 +848,4 @@ def dark(window):
relation.pack(side=RIGHT)
menu=Frame(root,bg="#171717",relief=SUNKEN)
menu.pack(side=LEFT,fill=Y)
main()
main()

0 comments on commit 6cdaa40

Please sign in to comment.