Explorar o código

CDB: Fix closing subtables when deleting line with filters

LeoVgr hai 3 semanas
pai
achega
223f3bde5f
Modificáronse 1 ficheiros con 1 adicións e 3 borrados
  1. 1 3
      hide/comp/cdb/Editor.hx

+ 1 - 3
hide/comp/cdb/Editor.hx

@@ -318,10 +318,8 @@ class Editor extends Component {
 		if (filters.length == 0 && filterFlags.has(Regular) && filterFlags.has(Warning) && filterFlags.has(Error))
 			return;
 
-		for (s in @:privateAccess table.separators) {
+		for (s in @:privateAccess table.separators)
 			@:privateAccess s.filtered = true;
-			s.refresh(false);
-		}
 
 		// Clean filters
 		var idx = filters.length;