2
0
Эх сурвалжийг харах

CDB: fix deletion on subtables not working

lviguier 6 сар өмнө
parent
commit
30cf6158b6

+ 7 - 2
hide/comp/cdb/Editor.hx

@@ -854,8 +854,13 @@ class Editor extends Component {
 
 		endChanges();
 		cursor.table.getRealSheet().sync();
-		for (t in modifiedTables)
-			t.refresh();
+		for (t in modifiedTables) {
+			var toRefresh = t;
+			while(toRefresh != null) {
+				toRefresh.refresh();
+				toRefresh = toRefresh.parent;
+			}
+		}
 		updateFilter();
 	}