From 8298ca058ba05c894ecebe79a6273eb88141e158 Mon Sep 17 00:00:00 2001 From: superdimensional Date: Tue, 27 Apr 2021 20:12:11 -0400 Subject: [PATCH] button size changed --- ben10.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ben10.py b/ben10.py index a3c5d4a..1b3235c 100644 --- a/ben10.py +++ b/ben10.py @@ -33,8 +33,8 @@ omnitrix_button.place(relx=0.5, rely=0.5, anchor=CENTER) quit_button = Button(root, text="X", fg="white",command=root.destroy) quit_button.place(rely=1.0, relx=1.0, x=0, y=0, anchor=SE) -omnitrix_left = Button(root, text="<", fg="white",command=count_down, highlightthickness=0, bd=0) -omnitrix_right = Button(root, text=">", fg="white",command=count_up, highlightthickness=0, bd=0) +omnitrix_left = Button(root, text="<", fg="white", bg="black" ,command=count_down, highlightthickness=0, bd=0, height = 25) +omnitrix_right = Button(root, text=">", fg="white", bg="black" ,command=count_up, highlightthickness=0, bd=0, height = 25) omnitrix_left.pack(side="left") omnitrix_right.pack(side="right")