Skip to content

Commit

Permalink
录屏 修复日志显示错误
Browse files Browse the repository at this point in the history
  • Loading branch information
xushengfeng committed Jan 12, 2024
1 parent ba2ade7 commit b0a757d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/recorder/recorder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,7 @@ function updataPrEl(pr: typeof ffprocess) {
document.getElementById("log_p").classList.remove("hide_log");
for (let i in pr[key]) {
if (pr[key][i].finish === "err") {
logText.value += "\n" + pr[key][i].logs.join("\n");
logText.value += "\n" + pr[key][i].logs.map((i) => i.text).join("\n");
}
}
logText.scrollTop = logText.scrollHeight;
Expand Down

0 comments on commit b0a757d

Please sign in to comment.