This commit is contained in:
Richard Kimberly Heck 2021-01-04 01:39:01 -05:00
parent 6750724717
commit 84e8ce4ce5

View File

@ -796,11 +796,13 @@ void BufferView::bookmarkEditPosition()
void BufferView::saveBookmark(unsigned int idx)
{
if (buffer().isInternal())
return;
// tentatively save bookmark, id and pos will be used to
// acturately locate a bookmark in a 'live' lyx session.
// pit and pos will be updated with bottom level pit/pos
// when lyx exits.
if (!buffer_.isInternal()) {
theSession().bookmarks().save(
buffer_.fileName(),
d->cursor_.bottom().pit(),
@ -813,7 +815,6 @@ void BufferView::saveBookmark(unsigned int idx)
// emit message signal.
message(_("Save bookmark"));
}
}
bool BufferView::moveToPosition(pit_type bottom_pit, pos_type bottom_pos,