File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -32,18 +32,25 @@ use crate::watched_tasks::WatchedTasksBuilder;
32
32
const SCREEN_TYPE : AlertScreen = AlertScreen :: Help ;
33
33
const PAGES : & [ & str ] = & [
34
34
"Hey there!
35
-
36
35
A short guide on how
37
36
this interface works:
37
+
38
+ Please long press the
39
+ lower button to
40
+ continue.
41
+ ..." ,
42
+ "...
43
+
38
44
Long presses on the
39
45
lower button perform
40
46
actions.
47
+
41
48
..." ,
42
49
"...
43
50
44
51
Short presses on the
45
52
lower button toggle
46
- between actions .
53
+ between options .
47
54
48
55
..." ,
49
56
"...
@@ -171,7 +178,7 @@ impl ActiveScreen for Active {
171
178
self . page . modify ( |page| match ( page. unwrap_or ( 0 ) , up) {
172
179
( 0 , true ) => Some ( 0 ) ,
173
180
( p, true ) => Some ( p - 1 ) ,
174
- ( 2 , false ) => Some ( 2 ) ,
181
+ ( 3 , false ) => Some ( 3 ) ,
175
182
( p, false ) => Some ( p + 1 ) ,
176
183
} ) ;
177
184
}
You can’t perform that action at this time.
0 commit comments