Skip to content

Commit

Permalink
Scaling fixes 3.0
Browse files Browse the repository at this point in the history
revoxhere authored Nov 29, 2020
1 parent d871e28 commit ccd38df
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions Wallet.py
Original file line number Diff line number Diff line change
@@ -757,6 +757,7 @@ def __init__(self, master):
textFont3 = Font(size=12,weight="bold")
textFont2 = Font(size=22,weight="bold")
textFont = Font(size=12,weight="normal")
rsize = Font(size=10)

self.master = master
master.geometry("720x420")
@@ -765,16 +766,16 @@ def __init__(self, master):
master.configure(background = backgroundColor)

Label(master, # UP - DOWN
background="#7bed9f",
background="#7bed9f", font=rsize,
width="10", height="100").place(relx=.0, rely= .0)

Label(master, # LEFT - RIGHT
background="#f5cd79",
width="150", height="5").place(relx=.0, rely= .0)
background="#f5cd79", font=rsize,
width="150", height="4").place(relx=.0, rely= .0)

Label(master, # SQUARE
background="#ff7f50",
width="10", height="5").place(relx=.0, rely= .0)
background="#ff7f50", font=rsize,
width="10", height="4").place(relx=.0, rely= .0)

balancetext = StringVar()
balancetext.set("Please wait...")
@@ -789,7 +790,7 @@ def __init__(self, master):
Label(master, text="1 DUCO = $"+str(ducofiat),
background="#f5cd79",
foreground=foregroundColor,
font=textFont).place(relx=.6, rely= .1125)
font=textFont).place(relx=.6, rely= .11)

Label(master, text="BALANCE",
background="#f5cd79",

0 comments on commit ccd38df

Please sign in to comment.