Unverified Commit 4fbdbddc authored by Alexandre Simard's avatar Alexandre Simard Committed by GitHub
Browse files

Remove pad spaces from progress bar text

parent 14c1c2b9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ function check_progressbar(id_part, id_progressbar, id_progressbar_span, id_skip
    
    if(opts.show_progress_in_title && progressbar && progressbar.offsetParent){
        if(progressbar.innerText){
            let newtitle = 'Stable Diffusion - ' + progressbar.innerText
            let newtitle = 'Stable Diffusion - ' + progressbar.innerText.slice(2)
            if(document.title != newtitle){
                document.title =  newtitle;          
            }