Skip to content

Commit 67d011b

Browse files
dfakerAUTOMATIC1111
authored andcommitted
Show generation progress in window title
1 parent bbdbbd3 commit 67d011b

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

javascript/progressbar.js

+15
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@ global_progressbars = {}
44
function check_progressbar(id_part, id_progressbar, id_progressbar_span, id_interrupt, id_preview, id_gallery){
55
var progressbar = gradioApp().getElementById(id_progressbar)
66
var interrupt = gradioApp().getElementById(id_interrupt)
7+
8+
if(progressbar && progressbar.offsetParent){
9+
if(progressbar.innerText){
10+
let newtitle = 'Stable Diffusion - ' + progressbar.innerText
11+
if(document.title != newtitle){
12+
document.title = newtitle;
13+
}
14+
}else{
15+
let newtitle = 'Stable Diffusion'
16+
if(document.title != newtitle){
17+
document.title = newtitle;
18+
}
19+
}
20+
}
21+
722
if(progressbar!= null && progressbar != global_progressbars[id_progressbar]){
823
global_progressbars[id_progressbar] = progressbar
924

0 commit comments

Comments
 (0)