Skip to content

Commit

Permalink
Beginning of Joe Caputo's mythmusic patch.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.mythtv.org/svn/trunk@2009 7dbf422c-18fa-0310-86e9-fd20926502f2
  • Loading branch information
Isaac Richards committed Aug 10, 2003
1 parent 2c6e958 commit 84c8b18
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion mythtv/libs/libmyth/mythwidgets.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,11 @@ void MythComboBox::keyPressEvent(QKeyEvent *e)
setCurrentItem((currentItem() + 1) % count());
break;
default:
e->ignore();
if (editable())
QComboBox::keyPressEvent(e);
else
e->ignore();
break;
}
}

Expand Down

0 comments on commit 84c8b18

Please sign in to comment.