| 
					
				 | 
			
			
				@@ -911,7 +911,8 @@ export const formateTimes = (osmd: OpenSheetMusicDisplay) => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	 * 总谱渲染时,需要取第一个渲染的声轨名字,canSelectTracks返回的声轨名字可能不是第一个,顺序有问题,需要用state.osmd.Sheet.Instruments 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	 */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	// const firstTrackName = state.combinePartIndexs.length>1 ? state.partListNames[state.combinePartIndexs[0]] : state.canSelectTracks[0] || ""; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-	const firstTrackName = state.combinePartIndexs.length>1 ? state.partListNames[state.combinePartIndexs[0]] : (state.osmd.Sheet.Instruments[0].Name || state.osmd.Sheet.Instruments[0].NameLabel.text || ""); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+	const filterInstruments = state.osmd.Sheet.Instruments.filter(item => item.Name?.toLocaleLowerCase() !== 'common' ) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+	const firstTrackName = state.combinePartIndexs.length>1 ? state.partListNames[state.combinePartIndexs[0]] : (filterInstruments[0].Name || filterInstruments[0].NameLabel.text || ""); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	const currentTrackIndex = state.isCombineRender && state.combinePartIndexs.length > 1 ? state.combinePartIndexs[0] : 0; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	while (!iterator.EndReached) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 		// console.log({ ...iterator }); 
			 |