Skip to content

Commit

Permalink
3.17-20241017
Browse files Browse the repository at this point in the history
  • Loading branch information
Henri Wahl committed Oct 17, 2024
1 parent 0d38767 commit 3058b72
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Nagstamon/QUI/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2937,6 +2937,8 @@ def __init__(self, server, parent=None):
# start ignoring TLS trouble when button clicked
self.button_fix_tls_error.clicked.connect(self.fix_tls_error)

print('highlight color', self.table.palette().highlight().color().setRgb(0,0,0,255))

self.addWidget(self.table, 1)

# as default do not show anything
Expand Down Expand Up @@ -3237,7 +3239,10 @@ def __init__(self, columncount, rowcount, sort_column, sort_order, server, paren
QTreeView::item:hover {margin: 0px;
color: white;
background-color: dimgrey;}
''')
QTreeView::item:selected {margin: 0px;
color: white;
background-color: blue;}
''')

# set application font
self.set_font()
Expand Down Expand Up @@ -3324,6 +3329,8 @@ def __init__(self, columncount, rowcount, sort_column, sort_order, server, paren
## display mode - all or only header to display error
#self.is_shown = False



@Slot()
def set_font(self):
"""
Expand Down

0 comments on commit 3058b72

Please sign in to comment.