summaryrefslogtreecommitdiffstats
path: root/src/app/widgets
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/widgets')
-rw-r--r--src/app/widgets/base/scrollable.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/widgets/base/scrollable.rs b/src/app/widgets/base/scrollable.rs
index 5d5620ae..9f07a794 100644
--- a/src/app/widgets/base/scrollable.rs
+++ b/src/app/widgets/base/scrollable.rs
@@ -238,7 +238,7 @@ impl Component for Scrollable {
// we are using a *visual* index here - not what is the actual index! Luckily, we keep track of that
// inside our linked copy of TableState!
- // Note that y is assumed to be *relative*;
+ // Note that y is assumed to be relative;
// we assume that y starts at where the list starts (and there are no gaps or whatever).
let y = usize::from(event.row - self.bounds.top());