Update Uptated-Prototype/Class-Based-GUI-Test.py

This commit is contained in:
2025-12-17 13:41:23 -08:00
parent d10d8a12f8
commit abfbb27be8

View File

@@ -24,7 +24,7 @@ class MainTextWidget(ttk.Frame):
self.pack(fill = "both", expand = True)
Input_Box = tk.Text(self, selectbackground="yellow", selectforeground="black", undo=True)
Input_Box.pack(side = LEFT, padx=5, pady=5, expand = True, fill = "both")
Input_Box.pack(side = "left", padx=5, pady=5, expand = True, fill = "both")
class MainPlaybackWidget(ttk.Frame):
def __init__(self, parent):