فهرست منبع

Fix duplicate line in subtable

Leonardo Jeanteur 2 سال پیش
والد
کامیت
80c2a2e156
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      hide/comp/cdb/Editor.hx

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

@@ -1330,7 +1330,7 @@ class Editor extends Component {
 	public function duplicateLine( table : Table, index = 0 ) {
 		if( !table.canInsert() || table.displayMode != Table )
 			return;
-		var srcObj = table.sheet.getLines()[index];
+		var srcObj = table.sheet.lines[index];
 		beginChanges();
 		var obj = table.sheet.newLine(index);
 		for(colId => c in table.columns ) {