Skip to content

Commit

Permalink
Underline try menu keys
Browse files Browse the repository at this point in the history
Better visibility for color schemas as solarized

Fix: #2564
  • Loading branch information
lukaszachy committed Feb 13, 2024
1 parent 908df2c commit 93dc95f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tmt/trying.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def menu(self) -> str:
index = self.action.index(self.key)

before = click.style(self.action[0:index], fg="bright_blue")
key = click.style(self.key, fg="blue", bold=True)
key = click.style(self.key, fg="blue", bold=True, underline=True)
after = click.style(self.action[index + 1:], fg="bright_blue")

longest = max(len(action.name) for action in Action)
Expand Down

0 comments on commit 93dc95f

Please sign in to comment.