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 9c7ac0f commit e275caaCopy full SHA for e275caa
src/components/commitlist.rs
@@ -6,8 +6,8 @@ use crate::{
6
},
7
keys::SharedKeyConfig,
8
strings::{self, symbol},
9
- ui::calc_scroll_top,
10
ui::style::{SharedTheme, Theme},
+ ui::{calc_scroll_top, draw_scrollbar},
11
};
12
use anyhow::Result;
13
use asyncgit::sync::{CommitId, Tags};
@@ -409,6 +409,14 @@ impl DrawableComponent for CommitList {
409
area,
410
);
411
412
+ draw_scrollbar(
413
+ f,
414
+ area,
415
+ &self.theme,
416
+ self.count_total,
417
+ self.selection,
418
+ );
419
+
420
Ok(())
421
}
422
0 commit comments