소스 검색

fixed click would select wrong table

Nicolas Cannasse 6 년 전
부모
커밋
6ac9df9e20
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      hide/comp/cdb/Cursor.hx

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

@@ -17,7 +17,7 @@ class Cursor {
 	public function set( ?t:Table, ?x=0, ?y=0, ?sel, update = true ) {
 		if( t != null ) {
 			for( t2 in editor.tables )
-				if( t.sheet.name == t2.sheet.name ) {
+				if( t.sheet.name == t2.sheet.name && (t.sheet.parent == null || t.sheet.parent.line == t2.sheet.parent.line) ) {
 					t = t2;
 					break;
 				}