commit 29

This commit is contained in:
2025-07-30 22:18:36 +02:00
parent 4ca52c2dc9
commit 8a4d3d70c9
2 changed files with 3 additions and 0 deletions

View File

@@ -352,6 +352,9 @@ class CustomFileDialog(tk.Toplevel):
btn = ttk.Button(mounted_devices_frame, text=f" {device_name}", image=icon,
compound="left", command=lambda p=mount_point: self.navigate_to(p), style="Dark.TButton.Borderless")
btn.pack(fill="x", pady=1)
self.device_bar = ttk.Progressbar(
mounted_devices_frame, orient="horizontal", length=100, mode="determinate", style='Small.Horizontal.TProgressbar')
self.device_bar.pack(fill="x", pady=(2, 5), padx=15)
tk.Frame(sidebar_frame, height=1, bg=separator_color).grid(
row=3, column=0, sticky="ew", padx=20, pady=15)