From 53ef077733d87eeef35e4a347f5c32d6b9d91bfc Mon Sep 17 00:00:00 2001 From: Burndowntheworld <68085552+Burndowntheworld@users.noreply.github.com> Date: Sun, 20 Feb 2022 22:29:22 -0500 Subject: [PATCH] v1.0.4 Small bug fixes --- val_stat_tracker.pyw | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/val_stat_tracker.pyw b/val_stat_tracker.pyw index 070126a..52fa88e 100644 --- a/val_stat_tracker.pyw +++ b/val_stat_tracker.pyw @@ -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") @@ -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() @@ -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}") @@ -419,4 +414,4 @@ root.bind('', lambda q: root.destroy()) -root.mainloop() \ No newline at end of file +root.mainloop()