Request ID: 1789260
http://sourceforge.net/tracker/index.php?func=detail&aid=1789260&group_id=6488&atid=106488
KURL::path() has to be used instead of prettyURL in case of local file.
Behaviour of ListPanelFunc::immediateOpenUrl method in panelfunc.cpp file has been changed as following:
Original code:
panel->origin->setURL( urlIn.prettyURL() );
Fixed code:
panel->origin->setURL(
urlIn.isLocalFile()?urlIn.path():urlIn.prettyURL() );
Patch file
File Added: 1789260.patch