From 20c3b45449992d62ec4ba86633d17823e9bb4b19 Mon Sep 17 00:00:00 2001 From: Frank Reininghaus Date: Tue, 22 Jan 2013 07:13:34 +0100 Subject: [PATCH] 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 --- src/views/dolphinview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()) { -- 2.47.3