fix: remove broken image path handling from settings dialog and paths tab

This commit is contained in:
Vxrtrauter
2026-03-08 00:29:10 +01:00
parent 351bd041b8
commit 78a47e89d3
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, image_path, tabs):
def paths_tab(title, download_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)