mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Fix inset-select-all for insets with multiple paragraphs
This commit is contained in:
parent
9eae2b141d
commit
093a1fe14c
@ -1825,9 +1825,11 @@ void BufferView::dispatch(FuncRequest const & cmd, DispatchResult & dr)
|
|||||||
} else {
|
} else {
|
||||||
// select current cell
|
// select current cell
|
||||||
cur.pos() = 0;
|
cur.pos() = 0;
|
||||||
|
cur.pit() = 0;
|
||||||
cur.resetAnchor();
|
cur.resetAnchor();
|
||||||
cur.setSelection(true);
|
cur.setSelection(true);
|
||||||
cur.pos() = cur.lastpos();
|
cur.pos() = cur.lastpos();
|
||||||
|
cur.pit() = cur.lastpit();
|
||||||
}
|
}
|
||||||
dr.screenUpdate(Update::Force);
|
dr.screenUpdate(Update::Force);
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user