Skip to content

Commit

Permalink
setup: Fix selection of storage group directories.
Browse files Browse the repository at this point in the history
Fixes #276
  • Loading branch information
bennettpeter committed Nov 6, 2020
1 parent 35bd899 commit 5852802
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythui/mythuifilebrowser.cpp
Expand Up @@ -65,7 +65,7 @@ MFileInfo::MFileInfo(const MFileInfo& other)
QString sgDir = other.storageGroupDir();
bool isDir = other.isDir();
qint64 size = other.size();
init(other.fileName(), sgDir, isDir, size);
init(other.filePath(), sgDir, isDir, size);
}

MFileInfo &MFileInfo::operator=(const MFileInfo &other)
Expand Down

0 comments on commit 5852802

Please sign in to comment.