소스 검색

[cdb] Removed escaping from single cell clipboard copy

Clément Espeute 11 달 전
부모
커밋
3d3ece7cb8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      hide/comp/cdb/Editor.hx

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

@@ -452,7 +452,7 @@ class Editor extends Component {
 			var col = cursor.table.columns.find((c) -> c.name == colName);
 			if (col == null)
 				throw "unknown column";
-			var str = cursor.table.sheet.colToString(col, Reflect.field(data[0], colName) ,true);
+			var str = cursor.table.sheet.colToString(col, Reflect.field(data[0], colName), false);
 			ide.setClipboard(str);
 		}
 		// copy many values at once