mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
Ctrl+F when in trash:/ (or any other remote protocol) said "malformed url" because KRun tried to download to a temp file via kioexec. %u tells it not to do that.
Alternatively we could look up kfind.desktop and use KRun::run(KService). svn path=/trunk/KDE/kdebase/apps/; revision=897114
This commit is contained in:
parent
d2fbbd44b4
commit
04f6e7b374
1 changed files with 1 additions and 1 deletions
|
@ -521,7 +521,7 @@ void DolphinViewActionHandler::slotAdjustViewProperties()
|
|||
|
||||
void DolphinViewActionHandler::slotFindFile()
|
||||
{
|
||||
KRun::run("kfind", m_currentView->url(), m_currentView->window());
|
||||
KRun::run("kfind %u", m_currentView->url(), m_currentView->window());
|
||||
}
|
||||
|
||||
void DolphinViewActionHandler::slotProperties()
|
||||
|
|
Loading…
Reference in a new issue