summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorextrawurst <mail@rusticorn.com>2023-12-22 17:12:50 +0100
committerextrawurst <776816+extrawurst@users.noreply.github.com>2023-12-22 17:22:55 +0100
commit99c705eaa77e9ccf04386fd312c474cf798772b0 (patch)
treece0b24f4c0b1784847c378aed8525866fee06d5b /src
parent55d316fad98d164284b1097bad8a18776b0feb72 (diff)
fix stashing tab empty (closes #1986)
Diffstat (limited to 'src')
-rw-r--r--src/tabs/stashing.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tabs/stashing.rs b/src/tabs/stashing.rs
index 93734ae3..6df47495 100644
--- a/src/tabs/stashing.rs
+++ b/src/tabs/stashing.rs
@@ -99,6 +99,7 @@ impl Stashing {
) -> Result<()> {
if self.is_visible() && ev == AsyncGitNotification::Status {
let status = self.git_status.last()?;
+ self.index.show()?;
self.index.update(&status.items)?;
}