diff options
-rw-r--r-- | qt-ui/tagwidget.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/qt-ui/tagwidget.cpp b/qt-ui/tagwidget.cpp index b0912addb..457f66c74 100644 --- a/qt-ui/tagwidget.cpp +++ b/qt-ui/tagwidget.cpp @@ -165,7 +165,6 @@ void TagWidget::keyPressEvent(QKeyEvent *e) { } if (e->key() == Qt::Key_Tab) { // let's pretend this is a comma instead QKeyEvent *fakeEvent = new QKeyEvent(e->type(), Qt::Key_Comma, e->modifiers(), QString(",")); - qDebug() << "sending comma instead"; GroupedLineEdit::keyPressEvent(fakeEvent); free(fakeEvent); } else { |