summaryrefslogtreecommitdiffstats
path: root/src/queue.rs
diff options
context:
space:
mode:
authorextrawurst <776816+extrawurst@users.noreply.github.com>2023-08-31 10:41:52 +0200
committerGitHub <noreply@github.com>2023-08-31 10:41:52 +0200
commit5be397b335b33787d6b5710567028b61f5cf1b28 (patch)
treed5a249bdb371c7e4614ea8303d6bbf8149882384 /src/queue.rs
parent16c97edb4d2190cab6f92a057aefb4d9a4f66703 (diff)
stash list does not update after pop/drop (#1865)
* move to stashlist after stashing * move to status after stash popping
Diffstat (limited to 'src/queue.rs')
-rw-r--r--src/queue.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/queue.rs b/src/queue.rs
index 3de68318..68531985 100644
--- a/src/queue.rs
+++ b/src/queue.rs
@@ -70,6 +70,14 @@ pub enum StackablePopupOpen {
CompareCommits(InspectCommitOpen),
}
+pub enum AppTabs {
+ Status,
+ Log,
+ Files,
+ Stashing,
+ Stashlist,
+}
+
///
pub enum InternalEvent {
///
@@ -91,6 +99,8 @@ pub enum InternalEvent {
///
TabSwitchStatus,
///
+ TabSwitch(AppTabs),
+ ///
SelectCommitInRevlog(CommitId),
///
TagCommit(CommitId),