From f2537b1811bea090ca5add6688120bbd916eba8c Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Mon, 7 Sep 2020 19:32:19 -0400 Subject: [PATCH] Update loading message if you're just loading your stash --- ui/stash.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ui/stash.go b/ui/stash.go index c8c764d..a69ea69 100644 --- a/ui/stash.go +++ b/ui/stash.go @@ -688,7 +688,11 @@ func stashHeaderView(m stashModel) string { // Still loading. We haven't found files, stashed items, or news yet. if loading && noMarkdowns { - return common.Subtle("Looking for stuff...") + if stashedOnly { + return common.Subtle("Loading your stash...") + } else { + return common.Subtle("Looking for stuff...") + } } localItems := m.countMarkdowns(localMarkdown)