mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-04-06 04:39:01 +08:00
Merge pull request #14916 from light-and-ray/use_original_document_title
Use original App Title in progress bar
This commit is contained in:
commit
48ce0379bc
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user