Skip to content

Commit

Permalink
simple mode: enable LEFT/RIGHT for previous/ next patch
Browse files Browse the repository at this point in the history
  • Loading branch information
xiangfu committed Mar 28, 2012
1 parent 5bea662 commit e240f4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/performance.c
Expand Up @@ -476,9 +476,9 @@ static void simple_mode_event(mtk_event *e, int *next)
osd_event_cb(simple_mode_current->filename, osd_off);
showing_title = 1;
}
if(e->press.code == MTK_KEY_F11)
if(e->press.code == MTK_KEY_F11 || e->press.code == MTK_KEY_RIGHT)
*next = 1;
if(e->press.code == MTK_KEY_F9)
if(e->press.code == MTK_KEY_F9 || e->press.code == MTK_KEY_LEFT)
*next = -1;
}

Expand Down

0 comments on commit e240f4e

Please sign in to comment.