gui fix with self.columnconfigure(1, weight=0) in class MainFrame (row 36)

This commit is contained in:
2025-08-11 00:15:23 +02:00
parent 65271a50d7
commit f5768d2118
4 changed files with 39 additions and 21 deletions

View File

@@ -27,10 +27,10 @@ class TunnelList(ttk.Frame):
self.scrollbar.grid(column=1, row=0, sticky="ns")
self.list_box.configure(yscrollcommand=self.scrollbar.set)
self.columnconfigure(0, weight=1)
self.rowconfigure(0, weight=1)
self.list_frame.columnconfigure(0, weight=1)
self.list_frame.rowconfigure(0, weight=1)
self.columnconfigure(0, weight=5)
self.rowconfigure(0, weight=5)
self.list_frame.columnconfigure(0, weight=5)
self.list_frame.rowconfigure(0, weight=5)
def populate(self, tunnels):
self.list_box.delete(0, tk.END)