From b7d5b2ddf56ab7778ea6b6b335f54af90749f296 Mon Sep 17 00:00:00 2001 From: Lukas W Date: Sat, 13 Feb 2016 09:23:59 +1300 Subject: [PATCH] Fix #2558 --- include/FileBrowser.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/FileBrowser.h b/include/FileBrowser.h index d9847cf91..a73a00801 100644 --- a/include/FileBrowser.h +++ b/include/FileBrowser.h @@ -201,7 +201,7 @@ public: QString fullName() const { - return QDir::cleanPath(m_path) + "/" + text(0); + return QFileInfo(m_path, text(0)).absoluteFilePath(); } inline FileTypes type( void ) const