removed: filter and vault from title bar

added: filter in info
This commit is contained in:
quenousimporte 2023-02-01 14:46:08 +01:00
parent d815bc3c5b
commit aa198d6b56
1 changed files with 2 additions and 6 deletions

View File

@ -463,6 +463,7 @@ function showinfo()
(tags ? "tags: " + tags : ""),
"saved: " + saved,
"word count: " + getwords(),
"current filter: " + currenttag || "",
"current note start: " + stat.cur.t,
"current note queries: " + stat.cur.q,
"session start: " + stat.ses.t,
@ -1918,12 +1919,7 @@ function mainkeydownhandler()
function setwindowtitle()
{
document.title = "[" + currentvault + "] -\xa0";
if (currenttag)
{
document.title += "[" + currenttag + "] -\xa0";
}
document.title += currentnote.title;
document.title = currentnote.title;
}
function ontitlechange()