Merge pull request #14916 from light-and-ray/use_original_document_title

Use original App Title in progress bar
This commit is contained in:
AUTOMATIC1111
2024-02-17 08:57:56 +03:00
committed by GitHub

View File

@@ -45,8 +45,15 @@ function formatTime(secs) {
} }
} }
var originalAppTitle = undefined;
onUiLoaded(function() {
originalAppTitle = document.title;
});
function setTitle(progress) { function setTitle(progress) {
var title = 'Stable Diffusion'; var title = originalAppTitle;
if (opts.show_progress_in_title && progress) { if (opts.show_progress_in_title && progress) {
title = '[' + progress.trim() + '] ' + title; title = '[' + progress.trim() + '] ' + title;