Drop noisy debug output

This qCDebug() call shows up at every change of directory and doesn't
really add any value.
This commit is contained in:
Elvis Angelaccio 2018-10-07 21:46:46 +02:00
parent 949da1fb31
commit 2871364f66

View file

@ -684,7 +684,6 @@ void DolphinViewContainer::slotUrlNavigatorLocationChanged(const QUrl& url)
void DolphinViewContainer::slotUrlSelectionRequested(const QUrl& url)
{
qCDebug(DolphinDebug) << "slotUrlSelectionRequested: " << url;
m_view->markUrlsAsSelected({url});
m_view->markUrlAsCurrent(url); // makes the item scroll into view
}