Skip to content

Commit

Permalink
Change separator color in black mode
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolargo committed Mar 4, 2024
1 parent be7457e commit 8a9949a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion glances/outputs/glances_curses.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ def _init_colors(self):
self.selected_color = curses.color_pair(10) | A_BOLD
# Define separator line style
curses.init_color(11, 500, 500, 500)
curses.init_pair(11, -1, -1)
curses.init_pair(11, curses.COLOR_BLACK, -1)
self.separator = curses.color_pair(11)

else:
Expand Down

0 comments on commit 8a9949a

Please sign in to comment.