Skip to content

Commit

Permalink
Reduce project name size
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremypw committed Mar 13, 2024
1 parent dd7a623 commit 02258e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FolderManager/ProjectFolderItem.vala
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ namespace Scratch.FolderManager {
if (monitored_repo != null) {
//As SourceList items are not widgets we have to use markup to change appearance of text.
if (monitored_repo.head_is_branch) {
markup = "<span size='larger'>%s</span>\n<span size='small' weight='normal'>%s</span>".printf (
markup = "<span size='medium'>%s</span>\n<span size='small' weight='normal'>%s</span>".printf (
name, monitored_repo.branch_name
);
} else { //Distinguish detached heads visually
Expand Down

0 comments on commit 02258e3

Please sign in to comment.