feat: update settings dialog to handle image path as None; improve table item focus styles

This commit is contained in:
Vxrtrauter
2026-03-08 13:58:23 +01:00
parent 9ba11bfa78
commit 66217ff9b6
2 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -244,7 +244,7 @@ def settings_dialog(self):
download_path.text(),
down_speed_limit.value(),
up_speed_limit.value(),
# image_path.text(),
None,
autoresume_checkbox.isChecked(),
max_connections.value(),
max_downloads.value(),
+6
View File
@@ -84,10 +84,16 @@ def _table_stylesheet(view_type="QTableWidget"):
{view_type}::item {{
border-bottom: 1px solid {c["border"]};
padding: 6px 14px;
outline: none;
{color_rule}
}}
{view_type}::item:selected {{
background: {c["selected"]};
outline: none;
}}
{view_type}::item:focus {{
outline: none;
border: none;
}}
QHeaderView {{
background: transparent;