aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/addon/packaddondialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/addon/packaddondialog.cpp')
-rw-r--r--src/modules/addon/packaddondialog.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/modules/addon/packaddondialog.cpp b/src/modules/addon/packaddondialog.cpp
index 62722f363..9b4ff25e7 100644
--- a/src/modules/addon/packaddondialog.cpp
+++ b/src/modules/addon/packaddondialog.cpp
@@ -709,7 +709,9 @@ void KviPackAddonSummaryFilesWidget::showEvent(QShowEvent *)
// Iterate through the addon dir and its subdirs
while(it.hasNext())
{
- list.append(it.next());
+ QString szStr=it.next();
+ if(!szStr.contains("/."))
+ list.append(szStr);
}
// QDirIterator does not support sorting, so do it manually