more intuitive guide vs fullscreen channel switching controls
This commit is contained in:
parent
d501658b7e
commit
6f310c7720
2 changed files with 2 additions and 2 deletions
|
|
@ -349,10 +349,10 @@ static void handle_event(App *app, const SDL_Event *event) {
|
||||||
app->about_modal_open = !app->about_modal_open;
|
app->about_modal_open = !app->about_modal_open;
|
||||||
break;
|
break;
|
||||||
case SDLK_UP:
|
case SDLK_UP:
|
||||||
tune_relative(app, 1);
|
tune_relative(app, app->mode == MODE_GUIDE ? -1 : 1);
|
||||||
break;
|
break;
|
||||||
case SDLK_DOWN:
|
case SDLK_DOWN:
|
||||||
tune_relative(app, -1);
|
tune_relative(app, app->mode == MODE_GUIDE ? 1 : -1);
|
||||||
break;
|
break;
|
||||||
case SDLK_LEFT:
|
case SDLK_LEFT:
|
||||||
browse_guide_time(app, -GUIDE_BROWSE_STEP_MINUTES);
|
browse_guide_time(app, -GUIDE_BROWSE_STEP_MINUTES);
|
||||||
|
|
|
||||||
BIN
src/app.o
BIN
src/app.o
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue