mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 00:48:35 +00:00
use @ and style as fat tag symbol
This commit is contained in:
parent
8db28d485a
commit
14c79c12a6
2 changed files with 2 additions and 2 deletions
Binary file not shown.
|
Before Width: | Height: | Size: 410 KiB After Width: | Height: | Size: 285 KiB |
|
|
@ -411,7 +411,7 @@ impl TagListComponent {
|
|||
///
|
||||
fn get_row(&self, tag: &TagWithMetadata) -> Row {
|
||||
const UPSTREAM_SYMBOL: &str = "\u{2191}";
|
||||
const ATTACHEMENT_SYMBOL: &str = "!";
|
||||
const ATTACHEMENT_SYMBOL: &str = "@";
|
||||
const EMPTY_SYMBOL: &str = " ";
|
||||
|
||||
let is_tag_missing_on_remote = self
|
||||
|
|
@ -445,7 +445,7 @@ impl TagListComponent {
|
|||
Cell::from(tag.author.clone())
|
||||
.style(self.theme.commit_author(false)),
|
||||
Cell::from(has_attachement_str)
|
||||
.style(self.theme.commit_time(false)),
|
||||
.style(self.theme.text_danger()),
|
||||
Cell::from(tag.message.clone())
|
||||
.style(self.theme.text(true, false)),
|
||||
];
|
||||
|
|
|
|||
Loading…
Reference in a new issue