summaryrefslogtreecommitdiffstats
path: root/src/queue.rs
diff options
context:
space:
mode:
authorStephan Dilly <dilly.stephan@gmail.com>2021-05-12 11:37:08 +0200
committerGitHub <noreply@github.com>2021-05-12 11:37:08 +0200
commit3643cea44db73c24d899931f3726273d8a32c8b8 (patch)
tree6da18a34fe462c50e603e767b9e9cf16b064a94a /src/queue.rs
parentf35ce0cbf4995ca2516060aeef3a29803a6378c0 (diff)
update branchlist after creating a branch (#702)
Diffstat (limited to 'src/queue.rs')
-rw-r--r--src/queue.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/queue.rs b/src/queue.rs
index a5226e51..6db977b1 100644
--- a/src/queue.rs
+++ b/src/queue.rs
@@ -12,6 +12,8 @@ bitflags! {
const DIFF = 0b010;
/// commands might need updating (app::update_commands)
const COMMANDS = 0b100;
+ /// branches have changed
+ const BRANCHES = 0b1000;
}
}