index
:
lcd4linux.git
master
trunk
lcd4linux
Jonathan McCrohan
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
if (Icon->speed_tree != NULL) {
Eval(Icon->speed_tree, &result);
Icon->speed = R2N(&result);
- if (Icon->speed < 10)
+ if (Icon->speed <= 0)
+ Icon->speed = 0;
+ else if (Icon->speed < 10)
Icon->speed = 10;
DelResult(&result);
}
@@ -196,24 +201,25 @@ void widget_icon_update(void *Self)
if (Icon->visible_tree != NULL) {
Eval(Icon->visible_tree, &result);
Icon->visible = R2N(&result);
- if (Icon->visible < 1)
+ if (Icon->visible < 0)
Icon->visible = 0;
DelResult(&result);
}
-
+
/* rotate icon bitmap */
Icon->curmap++;
if (Icon->curmap >= Icon->maxmap)
Icon->curmap = 0;
}
-
+
/* finally, draw it! */
if (W->class->draw)
W->class->draw(W);
-
+
/* add a new one-shot timer */
- timer_add(widget_icon_update, Self, Icon->speed, 1);
-
+ if (Icon->speed > 0) {
+ timer_add(widget_icon_update, Self, Icon->speed, 1);
+ }
}