Skip to content

Commit

Permalink
add help note to status string
Browse files Browse the repository at this point in the history
  • Loading branch information
anvial committed Jun 15, 2022
1 parent a4a83f0 commit 8702c36
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion viddy.go
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,8 @@ func (v *Viddy) renderSnapshot(id int64) error {
}

func (v *Viddy) UpdateStatusView() {
v.statusView.SetText(fmt.Sprintf("Suspend %s Diff %s Bell %s",
v.statusView.SetText(fmt.Sprintf("Press '?' for help"))
v.statusView.SetText(fmt.Sprintf("Suspend %s Diff %s Bell %s Press ? for help",
convertToOnOrOff(v.isSuspend),
convertToOnOrOff(v.isShowDiff),
convertToOnOrOff(v.isRingBell)))
Expand Down

0 comments on commit 8702c36

Please sign in to comment.