]> Dogcows Code - chaz/openbox/commitdiff
Ignore dot files in the styles directory.
authorScott Moynes <smoynes@nexus.carleton.ca>
Sat, 26 Oct 2002 15:31:33 +0000 (15:31 +0000)
committerScott Moynes <smoynes@nexus.carleton.ca>
Sat, 26 Oct 2002 15:31:33 +0000 (15:31 +0000)
src/Screen.cc

index 165a4a93c8f058ce905c00dddeceb53ce81e3cfc..eb93320638f98ba4b999d2994043b562646d1a49 100644 (file)
@@ -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;
This page took 0.026238 seconds and 4 git commands to generate.