mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 13:18:28 +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 {
|
||||
// select current cell
|
||||
cur.pos() = 0;
|
||||
cur.pit() = 0;
|
||||
cur.resetAnchor();
|
||||
cur.setSelection(true);
|
||||
cur.pos() = cur.lastpos();
|
||||
cur.pit() = cur.lastpit();
|
||||
}
|
||||
dr.screenUpdate(Update::Force);
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user