X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/7ac3ed4e749789ae348a80638cc18906c697b306..a24c1fce8234dc0ad0116aecc06c7151bcdd1cee:/src/kcategorizedview.cpp diff --git a/src/kcategorizedview.cpp b/src/kcategorizedview.cpp index 5ec751fa4..7fe806055 100644 --- a/src/kcategorizedview.cpp +++ b/src/kcategorizedview.cpp @@ -976,7 +976,12 @@ void KCategorizedView::leaveEvent(QEvent *event) void KCategorizedView::startDrag(Qt::DropActions supportedActions) { - QListView::startDrag(supportedActions); + // FIXME: QAbstractItemView does far better here since it sets the + // pixmap of selected icons to the dragging cursor, but it sets a non + // ARGB window so it is no transparent. Use QAbstractItemView when + // this is fixed on Qt. + //QListView::startDrag(supportedActions); + QAbstractItemView::startDrag(supportedActions); d->isDragging = false; d->mouseButtonPressed = false;