Skip to content

Commit

Permalink
Add missing return to TvPlayWindow::gestureEvent()
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-kristjansson committed Jun 28, 2012
1 parent 6f7c228 commit 8267639
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions mythtv/libs/libmythtv/tv_play_win.cpp
Expand Up @@ -64,8 +64,11 @@ void TvPlayWindow::UpdateProgress(void)
*/
bool TvPlayWindow::gestureEvent(MythGestureEvent *event)
{
bool handled = false;
if (event->gesture() == MythGestureEvent::Click)
{
LOG(VB_GENERAL, LOG_NOTICE, "TV Play Window Click");
handled = true;
}
return handled;
}

0 comments on commit 8267639

Please sign in to comment.