feat: readd image path configuration in settings dialog and update paths tab

This commit is contained in:
Vxrtrauter
2026-03-09 15:16:06 +01:00
parent 8db9f3d9e2
commit a9f229926b
2 changed files with 19 additions and 19 deletions
+2 -2
View File
@@ -30,11 +30,11 @@ def general_tab(title, autoresume, update_checkbox, transparent_window, tabs):
tabs.addTab(tab, title)
return tab
def paths_tab(title, download_path, tabs):
def paths_tab(title, download_path, image_path, tabs):
tab = QWidget()
layout = QVBoxLayout()
layout.addWidget(download_path)
# layout.addWidget(image_path)
layout.addWidget(image_path)
layout.addStretch()
tab.setLayout(layout)
tabs.addTab(tab, title)