bugfix: for ErosQ/SurfansF20, reset poweroff timer when scroll wheel is moved so that we dont blank the screen while the user is scrolling through a list
Change-Id: Ifdce301e2d75e3f6f54fba5b3eef15b2141cb954
This commit is contained in:
parent
bbe3942039
commit
d06cf3ac2d
1 changed files with 2 additions and 0 deletions
|
@ -233,6 +233,7 @@ int button_read_device(void)
|
|||
* Rockbox treats these buttons differently. */
|
||||
queue_post(&button_queue, BUTTON_SCROLL_FWD, 0);
|
||||
enc_position = 0;
|
||||
reset_poweroff_timer();
|
||||
}
|
||||
else if (enc_position < -1)
|
||||
{
|
||||
|
@ -240,6 +241,7 @@ int button_read_device(void)
|
|||
* Rockbox treats these buttons differently. */
|
||||
queue_post(&button_queue, BUTTON_SCROLL_BACK, 0);
|
||||
enc_position = 0;
|
||||
reset_poweroff_timer();
|
||||
}
|
||||
|
||||
return r;
|
||||
|
|
Loading…
Reference in a new issue