Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/core/input_device.c
Original file line number Diff line number Diff line change
Expand Up @@ -301,8 +301,8 @@ static void roller_up(void) {
if (g_scanning)
return;

if (g_init_done == 0) // dialed before done with init, cancel auto scan
g_init_done = -1;
if (g_init_done == 0) // disable roller before init done
return;

if (g_app_state == APP_STATE_USER_INPUT_DISABLED)
return;
Expand Down Expand Up @@ -336,8 +336,8 @@ static void roller_down(void) {
if (g_scanning)
return;

if (g_init_done == 0) // dialed before done with init, cancel auto scan
g_init_done = -1;
if (g_init_done == 0) // disable roller before init done
return;

if (g_app_state == APP_STATE_USER_INPUT_DISABLED)
return;
Expand Down