Skip to content

Commit 80887f5

Browse files
authored
Fix DEFAULT_REMOTE_ICON character code (#4653)
Unicode characters with code longer than 4 digits should be written as `\Uffffffff` (8 digits) Fixes #4652
2 parents 159efde + b5c284d commit 80887f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/gui/presentation/icons/git_icons.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var (
1212
TAG_ICON = "\uf02b" // 
1313
COMMIT_ICON = "\U000f0718" // 󰜘
1414
MERGE_COMMIT_ICON = "\U000f062d" // 󰘭
15-
DEFAULT_REMOTE_ICON = "\uf02a2" // 󰊢
15+
DEFAULT_REMOTE_ICON = "\U000f02a2" // 󰊢
1616
STASH_ICON = "\uf01c" // 
1717
LINKED_WORKTREE_ICON = "\U000f0339" // 󰌹
1818
MISSING_LINKED_WORKTREE_ICON = "\U000f033a" // 󰌺

0 commit comments

Comments
 (0)