Disable dragging items from the AutoTypeSelectView.

This commit is contained in:
Felix Geyer 2012-08-01 10:42:40 +02:00
parent 8fb2f9db7c
commit 54433637eb

View File

@ -25,6 +25,7 @@ AutoTypeSelectView::AutoTypeSelectView(QWidget* parent)
hideColumn(3);
setMouseTracking(true);
setAllColumnsShowFocus(true);
setDragEnabled(false);
}
void AutoTypeSelectView::setEntryList(const QList<Entry*>& entries)