From 5a00a643f44021b2d2a3afb71e444f1ebb2cb847 Mon Sep 17 00:00:00 2001 From: "B.Jothin kumar" Date: Wed, 13 Oct 2021 13:07:19 +0530 Subject: [PATCH] Update gui.py --- gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui.py b/gui.py index 343775d..1e87ab2 100644 --- a/gui.py +++ b/gui.py @@ -19,7 +19,7 @@ def speak(text): scroll_bar.pack(side=tk.RIGHT, fill=tk.Y) -chat_listbox.pack(fill=tk.BOTH, side=tk.RIGHT) +chat_listbox.pack(fill=tk.Y, side=tk.RIGHT) scroll_bar.configure(command=chat_listbox.yview) chat_listbox.configure(yscrollcommand=scroll_bar.set) main_frame.pack(fill=tk.BOTH)