From: Peter Penz Date: Wed, 6 Oct 2010 14:53:06 +0000 (+0000) Subject: Restore the cursor if the URL has been changed. This assures that the pointing-hand... X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/d928089fd23b48dcb9ad8511c87b3b695b149487 Restore the cursor if the URL has been changed. This assures that the pointing-hand cursor gets reset when changing the directory. svn path=/trunk/KDE/kdebase/apps/; revision=1183219 --- diff --git a/src/views/viewextensionsfactory.cpp b/src/views/viewextensionsfactory.cpp index 6d4ab09ca..152396253 100644 --- a/src/views/viewextensionsfactory.cpp +++ b/src/views/viewextensionsfactory.cpp @@ -133,6 +133,7 @@ ViewExtensionsFactory::ViewExtensionsFactory(QAbstractItemView* view, // Apply a pointing-hand cursor when hovering files connect(view, SIGNAL(entered(const QModelIndex&)), SLOT(applyPointingHandCursor())); connect(view, SIGNAL(viewportEntered()), SLOT(restoreCursor())); + connect(viewModeController, SIGNAL(urlChanged(const KUrl&)), SLOT(restoreCursor())); } ViewExtensionsFactory::~ViewExtensionsFactory()