summaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
authormjarkk <mkopenga@gmail.com>2018-12-14 13:40:40 +0100
committermjarkk <mkopenga@gmail.com>2018-12-14 13:40:40 +0100
commitd11f8989d9f483f278393e0fdb3b1280f8db031b (patch)
tree468696f48f5c0f8a7657a280035d1c068c20fde3 /pkg
parent0fca27d0221cba90afe2ac3d8dcb85a7dd6f1e8b (diff)
parent255319e597019936e21b46e248841e38ea50302c (diff)
Merge branch 'https-ask-for-username-password' of https://github.com/mjarkk/lazygit into https-ask-for-username-password
Diffstat (limited to 'pkg')
-rw-r--r--pkg/commands/branch.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/commands/branch.go b/pkg/commands/branch.go
index 49655c41a..419a106d2 100644
--- a/pkg/commands/branch.go
+++ b/pkg/commands/branch.go
@@ -22,7 +22,7 @@ type Branch struct {
func (b *Branch) GetDisplayStrings() []string {
displayName := utils.ColoredString(b.Name, b.GetColor())
if b.Selected && b.Pushables != "" && b.Pullables != "" {
- displayName = fmt.Sprintf("ā†‘%sā†“%s %s", b.Pushables, b.Pullables, displayName)
+ displayName = fmt.Sprintf("%s ā†‘%sā†“%s", displayName, b.Pushables, b.Pullables)
}
return []string{b.Recency, displayName}