diff options
author | Vincent Reher <[email protected]> | 2022-05-03 12:43:32 -0700 |
---|---|---|
committer | Vincent Reher <[email protected]> | 2023-10-03 09:05:14 -0700 |
commit | ceb9a720bacef4d29abb04353b8b71ac710cfbc1 (patch) | |
tree | ac220666f9ad081f3da24dd85c0a1cdf9cabd6f4 | |
parent | 8a630333192980368e8c245962e29684f846b161 (diff) | |
download | tdebase-ceb9a720bacef4d29abb04353b8b71ac710cfbc1.tar.gz tdebase-ceb9a720bacef4d29abb04353b8b71ac710cfbc1.zip |
Implement TDE/tdebase#270 for tdebase: Extend meaning of "Hidden" files.
This commit requires a related commit for tdelibs.
Signed-off-by: Vincent Reher <[email protected]>
-rw-r--r-- | konqueror/listview/konq_listviewitems.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/konqueror/listview/konq_listviewitems.cpp b/konqueror/listview/konq_listviewitems.cpp index 1766a0b0b..5eac5420b 100644 --- a/konqueror/listview/konq_listviewitems.cpp +++ b/konqueror/listview/konq_listviewitems.cpp @@ -95,7 +95,7 @@ void KonqListViewItem::updateContents() else sortChar = 3; - if ( m_groupHiddenFirst && m_fileitem->text()[0] == '.' ) + if ( m_groupHiddenFirst && TDEIO::fileIsHidden(m_fileitem->text()) ) --sortChar; //now we have the first column, so let's do the rest |