Skip to content

Commit

Permalink
Fixes #7271: ValueError: "Unable to convert 222222 to QColor" in pyqt…
Browse files Browse the repository at this point in the history
…graph/functions.py when starting run_tribler.py
  • Loading branch information
kozlovsky committed Jan 16, 2023
1 parent 9a2ee03 commit ff80708
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tribler/gui/widgets/trustgraphpage.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ def hideEvent(self, QHideEvent):
super().hideEvent(QHideEvent)

def initialize_trust_graph(self):
pg.setConfigOption('background', '222222')
pg.setConfigOption('foreground', '555')
pg.setConfigOption('background', '#222222')
pg.setConfigOption('foreground', '#555')
pg.setConfigOption('antialias', True)

graph_layout = pg.GraphicsLayoutWidget()
Expand Down

0 comments on commit ff80708

Please sign in to comment.