From: Scott Moynes Date: Sat, 26 Oct 2002 15:31:33 +0000 (+0000) Subject: Ignore dot files in the styles directory. X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=9af642d29918e8b36d7f1fd17e4c771662d4fe97;p=chaz%2Fopenbox Ignore dot files in the styles directory. --- diff --git a/src/Screen.cc b/src/Screen.cc index 165a4a93..eb933206 100644 --- a/src/Screen.cc +++ b/src/Screen.cc @@ -2314,7 +2314,8 @@ bool BScreen::parseMenuFile(FILE *file, Rootmenu *menu) { for (; it != end; ++it) { const string& fname = *it; - if (fname[fname.size()-1] == '~') + //ignore backups and dot files + if (fname[fname.size()-1] == '~' || fname[0] == '.') continue; string style = stylesdir;