Run-dialog, ignore dot files.

This commit is contained in:
QC 2014-06-07 11:00:21 +02:00
parent df49b0709b
commit eb20e77d6e
1 changed files with 4 additions and 0 deletions

View File

@ -149,6 +149,10 @@ static char ** get_apps ( void )
dent->d_type != DT_UNKNOWN ) {
continue;
}
// Skip dot files.
if(dent->d_name[0] == '.') {
continue;
}
int found = 0;