german translate file updatet header more pady and listbox less pady
This commit is contained in:
Binary file not shown.
@ -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(
|
||||||
|
Reference in New Issue
Block a user