fix: scroll to cursor when opening
This commit is contained in:
parent
968df214f7
commit
207cd570e8
7
main.js
7
main.js
|
@ -2968,13 +2968,14 @@ function bindfile(note)
|
||||||
}
|
}
|
||||||
resize();
|
resize();
|
||||||
|
|
||||||
// to improve...
|
setpos(note.pos || 0);
|
||||||
|
|
||||||
if (!issplit() && searchdialog.hidden)
|
if (!issplit() && searchdialog.hidden)
|
||||||
{
|
{
|
||||||
|
// force to scroll to cursor pos
|
||||||
|
md.blur();
|
||||||
md.focus();
|
md.focus();
|
||||||
}
|
}
|
||||||
|
|
||||||
setpos(note.pos || 0);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function defaultheaders(tags = "")
|
function defaultheaders(tags = "")
|
||||||
|
|
Loading…
Reference in New Issue