Przeglądaj źródła

Merge branch '2023-8-28'

liushengqiang 1 rok temu
rodzic
commit
1a2a036da6
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      src/pc/home/runtime.ts

+ 1 - 1
src/pc/home/runtime.ts

@@ -200,7 +200,7 @@ export const renderMeasures = (abc: IAbc, option?: IRenderMeasuresOption) => {
 		abc.title && (text += `T:${abc.title}` + "\n");
 	}
 	if (option?.showCreator) {
-		abc.creator && (text += `R:${abc.creator}` + "\n");
+		abc.creator && (text += `C:${abc.creator}` + "\n");
 	}
 	abc.celf && (text += abc.celf + "\n");
 	abc.meter && (text += abc.meter + "\n");