From: Frank Reininghaus Date: Tue, 22 Jan 2013 06:13:34 +0000 (+0100) Subject: Make the "A folder cannot be dropped into itself" message less intrusive X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/20c3b45449992d62ec4ba86633d17823e9bb4b19?ds=sidebyside Make the "A folder cannot be dropped into itself" message less intrusive Showing this message in the KMessageWidget above the view, which means that the view contents are moved down, can be extremely annoying according to user feedback. Just showing the message in the status bar is probably enough. BUG: 313466 REVIEW: 108483 FIXED-IN: 4.10.0 --- diff --git a/src/views/dolphinview.cpp b/src/views/dolphinview.cpp index f0fad1976..502ffd428 100644 --- a/src/views/dolphinview.cpp +++ b/src/views/dolphinview.cpp @@ -1025,7 +1025,7 @@ void DolphinView::slotItemDropEvent(int index, QGraphicsSceneDragDropEvent* even const QString error = DragAndDropHelper::dropUrls(destItem, destUrl, &dropEvent); if (!error.isEmpty()) { - emit errorMessage(error); + emit infoMessage(error); } if (destUrl == url()) {