summaryrefslogtreecommitdiffstats
path: root/src/app.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/app.rs')
-rw-r--r--src/app.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/app.rs b/src/app.rs
index 684ab9ad..35efc997 100644
--- a/src/app.rs
+++ b/src/app.rs
@@ -16,10 +16,11 @@ pub enum ApplicationPosition {
Process,
}
+#[derive(Debug)]
pub enum ScrollDirection {
- /// UP means scrolling up --- this usually DECREMENTS
+ // UP means scrolling up --- this usually DECREMENTS
UP,
- /// DOWN means scrolling down --- this usually INCREMENTS
+ // DOWN means scrolling down --- this usually INCREMENTS
DOWN,
}