소스 검색

fix: 只有五线谱支持编辑谱面和回显谱面元素移动的信息

TIANYONG 9 달 전
부모
커밋
8e359d6827
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/view/plugins/move-music-score/index.tsx

+ 1 - 1
src/view/plugins/move-music-score/index.tsx

@@ -491,7 +491,7 @@ const handleUndo = () => {
 
 /** 根据移动数据渲染 */
 export const renderForMoveData = () => {
-	if (state.isSingleLine) return; 
+	if (state.isSingleLine || state.musicRenderType !== 'staff') return; 
 	if (state.extStyleConfigJson) {
 		try {
 			extStyleConfigJson = JSON.parse(state.extStyleConfigJson);