As a quickfix, you can do this to q.window.js (line 338):
// watch the enter button (as long as there's no textarea, - Thomas)
this.confirmWithEnter = (function(event) {
if (event.keyCode == 13 && typeof(this.textarea) == 'undefined')
{
next.focus();
onConfirm();
}
}).bind(this);