Skip to content

Commit

Permalink
v1.0.4
Browse files Browse the repository at this point in the history
Small bug fixes
  • Loading branch information
Burndowntheworld authored Feb 21, 2022
1 parent 375cf1c commit 53ef077
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions val_stat_tracker.pyw
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ def showcredits():

creditwindow.geometry("{}x{}+{}+{}".format(window_width, window_height, x_cordinate, y_cordinate))

mitchell = Label(creditwindow, text="Made By Mitchell Gibbons AKA", fg="white", bg="black")
burndowntheworld = Label(creditwindow, text="Burndowntheworld", fg="white", bg="black")
discord = Label(creditwindow, text="burndowntheworld#6969", fg="white", bg="black")
email = Label(creditwindow, text="burndowntheworld1@gmail.com", fg="white", bg="black")
Expand All @@ -96,8 +95,7 @@ def showcredits():
notpartneredwithtrackergg = Label(creditwindow, text="We are not affiliated, or partnered with 'Tracker Network'. We do not work for/with 'Tracker Network'.", font=("helvetica",7), fg="white", bg="black")


mitchell.pack(pady=(100,0))
burndowntheworld.pack()
burndowntheworld.pack(pady=(100,0))
discord.pack()
email.pack()

Expand Down Expand Up @@ -220,13 +218,10 @@ def duosplit(string):
return grouped_words




def nothing():
pass



def move(e):
root.geometry(f"+{e.x_root}+{e.y_root}")

Expand Down Expand Up @@ -419,4 +414,4 @@ root.bind('<Escape>', lambda q: root.destroy())



root.mainloop()
root.mainloop()

0 comments on commit 53ef077

Please sign in to comment.