Use original App Title in progress bar
This commit is contained in:
parent
b7f45e67dc
commit
1142201a3a
|
@ -45,8 +45,15 @@ function formatTime(secs) {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
var originalAppTitle = undefined;
|
||||
|
||||
onUiLoaded(function() {
|
||||
originalAppTitle = document.title;
|
||||
});
|
||||
|
||||
function setTitle(progress) {
|
||||
var title = 'Stable Diffusion';
|
||||
var title = originalAppTitle;
|
||||
|
||||
if (opts.show_progress_in_title && progress) {
|
||||
title = '[' + progress.trim() + '] ' + title;
|
||||
|
|
Loading…
Reference in New Issue