more intuitive guide vs fullscreen channel switching controls

This commit is contained in:
markmental 2026-03-28 17:55:48 -04:00
commit 6f310c7720
2 changed files with 2 additions and 2 deletions

View file

@ -349,10 +349,10 @@ static void handle_event(App *app, const SDL_Event *event) {
app->about_modal_open = !app->about_modal_open;
break;
case SDLK_UP:
tune_relative(app, 1);
tune_relative(app, app->mode == MODE_GUIDE ? -1 : 1);
break;
case SDLK_DOWN:
tune_relative(app, -1);
tune_relative(app, app->mode == MODE_GUIDE ? 1 : -1);
break;
case SDLK_LEFT:
browse_guide_time(app, -GUIDE_BROWSE_STEP_MINUTES);

BIN
src/app.o

Binary file not shown.