We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69fd7e6 commit 8b71734Copy full SHA for 8b71734
src/components/commitlist.rs
@@ -45,6 +45,9 @@ pub struct CommitList {
45
items: ItemBatch,
46
highlights: Option<Rc<IndexSet<CommitId>>>,
47
commits: IndexSet<CommitId>,
48
+ /// The marked commits.
49
+ /// `self.marked[].0` holds the commit index into `self.items.items` - used for ordering the list.
50
+ /// `self.marked[].1` is the commit id of the marked commit.
51
marked: Vec<(usize, CommitId)>,
52
scroll_state: (Instant, f32),
53
tags: Option<Tags>,
0 commit comments