Skip to content

Commit

Permalink
fix bug with 4 items again
Browse files Browse the repository at this point in the history
  • Loading branch information
RainbowTabitha committed Feb 1, 2024
1 parent cd33abd commit f065001
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,21 +229,21 @@ def create_mp4_frame(self):
icon = create_image_icon(tabview.tab("Item Mods"), "assets/miniMushroom.png", 2, 1)
label = ctk.CTkLabel(master=tabview.tab("Item Mods"), text=" Costs ", font=("Arial", 16))
label.grid(row=2, column=2)
self.miniPrice4 = ctk.CTkEntry(master=tabview.tab("Item Mods"), width=48, font=("Arial", 16, "bold"))
self.miniPrice4.grid(row=2, column=3)
label3 = ctk.CTkLabel(master=tabview.tab("Item Mods"), text=" 5 ", font=("Arial", 24, "bold"))
label3.grid(row=2, column=3)
label = ctk.CTkLabel(master=tabview.tab("Item Mods"), text=" and is ", font=("Arial", 16))
label.grid(row=2, column=4)
self.miniWeight4 = ctk.CTkEntry(master=tabview.tab("Item Mods"), width=48, font=("Arial", 16, "bold"))
self.miniWeight4.grid(row=2, column=5)
label = ctk.CTkLabel(master=tabview.tab("Item Mods"), text=" % common. ", font=("Arial", 16))
label = ctk.CTkLabel(master=tabview.tab("Item Mods"), text=" % common.", font=("Arial", 16))
label.grid(row=2, column=6)

# Create mushroom orb space icon and entry
icon = create_image_icon(tabview.tab("Item Mods"), "assets/megaMushroom.png", 3, 1)
label = ctk.CTkLabel(master=tabview.tab("Item Mods"), text=" Costs ", font=("Arial", 16))
label.grid(row=3, column=2)
self.megaPrice4 = ctk.CTkEntry(master=tabview.tab("Item Mods"), width=48, font=("Arial", 16, "bold"))
self.megaPrice4.grid(row=3, column=3)
label3 = ctk.CTkLabel(master=tabview.tab("Item Mods"), text=" 5 ", font=("Arial", 24, "bold"))
label3.grid(row=3, column=3)
label = ctk.CTkLabel(master=tabview.tab("Item Mods"), text=" and is ", font=("Arial", 16))
label.grid(row=3, column=4)
self.megaWeight4 = ctk.CTkEntry(master=tabview.tab("Item Mods"), width=48, font=("Arial", 16, "bold"))
Expand Down

0 comments on commit f065001

Please sign in to comment.