소스 검색

Fix copy/paste from line to another of different kind

lviguier 1 년 전
부모
커밋
edba695b76
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      hide/comp/cdb/Editor.hx

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

@@ -682,8 +682,8 @@ class Editor extends Component {
 				for( cid in 0...clipboard.schema.length ) {
 					var c1 = clipboard.schema[cid];
 					var c2 = columns[cid + posX];
-					var p = Editor.getColumnProps(c2);
 					if( c2 == null ) continue;
+					var p = Editor.getColumnProps(c2);
 
 					if( !cursor.table.canEditColumn(c2.name) || p.copyPasteImmutable)
 						continue;