Browse Source

ok when no filter.

Nicolas Cannasse 19 years ago
parent
commit
4f8ca068d6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      std/tools/haxedoc/Main.hx

+ 1 - 1
std/tools/haxedoc/Main.hx

@@ -617,7 +617,7 @@ class DocView {
 
 	static function filtered(name) {
 		if( filters.isEmpty() )
-			return false;
+			return true;
 		for( x in filters )
 			if( StringTools.startsWith(name,x) )
 				return true;