summaryrefslogtreecommitdiff
path: root/code/fe310/eos/eve/screen
diff options
context:
space:
mode:
authorUros Majstorovic <majstor@majstor.org>2020-03-11 16:31:38 +0100
committerUros Majstorovic <majstor@majstor.org>2020-03-11 16:31:38 +0100
commit03925afaa3117243a7b29fa4327ea378c3e6eee6 (patch)
tree12357e194346213a3bded2654f7e3428c84d6aed /code/fe310/eos/eve/screen
parentab1006d27417cc831150877ec46fbc13ffeddb53 (diff)
eve refactor: keyboard scale param; track extended; oscillator extended tracker
Diffstat (limited to 'code/fe310/eos/eve/screen')
-rw-r--r--code/fe310/eos/eve/screen/form.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/code/fe310/eos/eve/screen/form.c b/code/fe310/eos/eve/screen/form.c
index b4e59b9..10f17ad 100644
--- a/code/fe310/eos/eve/screen/form.c
+++ b/code/fe310/eos/eve/screen/form.c
@@ -24,7 +24,7 @@ int eve_form_touch(EVECanvas *c, uint8_t tag0, int touch_idx) {
EVEForm *form = (EVEForm *)c;
EVEWidget *widget = form->widget;
int a, i, ret = 0;
- EVEPageFocus focus = { NULL, {0,0,0,0}};
+ EVEPageFocus focus = {NULL, {0,0,0,0}};
for (i=0; i<form->widget_size; i++) {
a = widget->touch(widget, &form->p, tag0, touch_idx, &focus);
@@ -61,7 +61,7 @@ uint8_t eve_form_draw(EVECanvas *c, uint8_t tag0) {
tagN = widget->draw(widget, &form->p, tag0);
if (tagN) {
for (j=tag0; j<=tagN; j++) {
- eve_touch_set_opt(j, eve_touch_get_opt(j) | EVE_TOUCH_OPT_TRACK | EVE_TOUCH_OPT_TRACK_XY | EVE_TOUCH_OPT_INERT);
+ eve_touch_set_opt(j, eve_touch_get_opt(j) | EVE_TOUCH_OPT_TRACK | EVE_TOUCH_OPT_TRACK_XY | EVE_TOUCH_OPT_TRACK_EXT);
}
if (tagN < 0xfe) {
tag0 = tagN + 1;