diff options
author | Jonas Böer <webmaster@morgil.de> | 2022-11-20 14:57:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-20 14:57:43 +0000 |
commit | 471189743a5f3dd7a5c822e63aad28f950abbd94 (patch) | |
tree | cfdee281468c8da65d95e990a0b537b411e69d63 /javascript | |
parent | 828438b4a190759807f9054932cae3a8b880ddf1 (diff) | |
download | stable-diffusion-webui-gfx803-471189743a5f3dd7a5c822e63aad28f950abbd94.tar.gz stable-diffusion-webui-gfx803-471189743a5f3dd7a5c822e63aad28f950abbd94.tar.bz2 stable-diffusion-webui-gfx803-471189743a5f3dd7a5c822e63aad28f950abbd94.zip |
Move progress info to beginning of title
because who has so few tabs open that they can see the end of a tab name?
Diffstat (limited to 'javascript')
-rw-r--r-- | javascript/progressbar.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/javascript/progressbar.js b/javascript/progressbar.js index 671fde34..43d1d1ce 100644 --- a/javascript/progressbar.js +++ b/javascript/progressbar.js @@ -23,7 +23,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 = '[' + progressbar.innerText.trim() + '] Stable Diffusion'; if(document.title != newtitle){ document.title = newtitle; } |