commit 54

This commit is contained in:
2025-08-03 23:53:22 +02:00
parent 0e280e30e2
commit d20a941c8c
5 changed files with 2 additions and 2 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -406,6 +406,7 @@ class WidgetManager:
Tooltip(self.settings_button, "Einstellungen")
if self.dialog.dialog_mode == "save":
action_buttons_frame.grid_columnconfigure(0, weight=1)
self.filename_entry = ttk.Entry(action_buttons_frame)
save_button = ttk.Button(
action_buttons_frame, text="Speichern", command=self.dialog.on_save)
@@ -415,7 +416,6 @@ class WidgetManager:
ft[0] for ft in self.dialog.filetypes], state="readonly")
if button_box_pos == 'left':
action_buttons_frame.grid_columnconfigure(0, weight=1)
self.filename_entry.grid(
row=0, column=0, sticky="ew", padx=(10, 5))
save_button.grid(row=0, column=1, sticky="e", padx=(0, 10))

View File

@@ -55,7 +55,7 @@ if __name__ == "__main__":
style = ttk.Style(root)
root.tk.call('source', f"{theme_path}/water.tcl")
try:
root.tk.call('set_theme', 'light')
root.tk.call('set_theme', 'dark')
except tk.TclError:
pass
root.mainloop()