diff options
| author | Mikaël Capelle <capelle.mikael@gmail.com> | 2021-01-13 12:59:57 +0100 |
|---|---|---|
| committer | Mikaël Capelle <capelle.mikael@gmail.com> | 2021-01-13 12:59:57 +0100 |
| commit | 4a5ff2f2320656366a4c931300626a68c49bd7b6 (patch) | |
| tree | f48b719cd3d36f2f7acbc771de441ff18e8cb567 /src/filetreemodel.cpp | |
| parent | 242125fdef3cb760b5b4fcacaedbcd81b13d3701 (diff) | |
Remove archive parsing attribute from core and use the one from settings directly.
Diffstat (limited to 'src/filetreemodel.cpp')
| -rw-r--r-- | src/filetreemodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/filetreemodel.cpp b/src/filetreemodel.cpp index 7095f492..22bcda28 100644 --- a/src/filetreemodel.cpp +++ b/src/filetreemodel.cpp @@ -273,7 +273,7 @@ const FileTreeModel::SortInfo& FileTreeModel::sortInfo() const bool FileTreeModel::showArchives() const { - return (m_flags.testFlag(Archives) && m_core.getArchiveParsing()); + return (m_flags.testFlag(Archives) && m_core.settings().archiveParsing()); } QModelIndex FileTreeModel::index( |
