Merge pull request 'german translate file updatet header more pady and listbox less pady' (#41) from 04-06-2025_large_update into main

Reviewed-on: #41
This commit is contained in:
2025-07-09 16:24:36 +02:00
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, row=0,
sticky="w", sticky="w",
padx=(5, 20), padx=(5, 20),
pady=(10, 0), pady=(15, 5),
ipady=4, ipady=4,
) )
self.version_label.grid(column=1, row=1, sticky="w", padx=(5, 20), pady=(0, 10)) 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 # Frame for Listbox and Scrollbar
self.list_container_frame = ttk.Frame(self) 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.columnconfigure(1, weight=1)
self.list_container_frame.rowconfigure(2, weight=1) self.list_container_frame.rowconfigure(2, weight=1)
self.list_frame = ttk.LabelFrame(self.list_container_frame, text=_("Tunnels")) 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 # Listbox with Scrollbar
self.list_box = tk.Listbox(self.list_frame, selectmode="single") self.list_box = tk.Listbox(self.list_frame, selectmode="single")
self.list_box.config( self.list_box.config(