german translate file updatet header more pady and listbox less pady

This commit is contained in:
2025-07-09 16:23:42 +02:00
parent fd957d9742
commit c509fdbd18
2 changed files with 3 additions and 3 deletions

Binary file not shown.

View File

@ -221,7 +221,7 @@ class FrameWidgets(ttk.Frame):
row=0,
sticky="w",
padx=(5, 20),
pady=(10, 0),
pady=(15, 5),
ipady=4,
)
self.version_label.grid(column=1, row=1, sticky="w", padx=(5, 20), pady=(0, 10))
@ -237,11 +237,11 @@ class FrameWidgets(ttk.Frame):
# Frame for Listbox and Scrollbar
self.list_container_frame = ttk.Frame(self)
self.list_container_frame.grid(column=1, row=2, sticky="nsew", pady=3)
self.list_container_frame.grid(column=1, row=2, sticky="nsew")
self.list_container_frame.columnconfigure(1, weight=1)
self.list_container_frame.rowconfigure(2, weight=1)
self.list_frame = ttk.LabelFrame(self.list_container_frame, text=_("Tunnels"))
self.list_frame.grid(column=0, row=0, sticky="nsew", padx=10, ipady=25)
self.list_frame.grid(column=0, row=0, sticky="nsew", padx=10, ipady=20)
# Listbox with Scrollbar
self.list_box = tk.Listbox(self.list_frame, selectmode="single")
self.list_box.config(