Skip to content

Commit 84c8b18

Browse files
author
Isaac Richards
committed
Beginning of Joe Caputo's mythmusic patch.
git-svn-id: http://svn.mythtv.org/svn/trunk@2009 7dbf422c-18fa-0310-86e9-fd20926502f2
1 parent 2c6e958 commit 84c8b18

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

mythtv/libs/libmyth/mythwidgets.cpp

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,11 @@ void MythComboBox::keyPressEvent(QKeyEvent *e)
3333
setCurrentItem((currentItem() + 1) % count());
3434
break;
3535
default:
36-
e->ignore();
36+
if (editable())
37+
QComboBox::keyPressEvent(e);
38+
else
39+
e->ignore();
40+
break;
3741
}
3842
}
3943

0 commit comments

Comments
 (0)