mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-26 11:16:55 +00:00
Tabular::editXY should not touch the selection
This commit is contained in:
parent
494ce6647a
commit
354897f6d9
@ -183,6 +183,8 @@ public:
|
||||
virtual void edit(Cursor & cur, bool front,
|
||||
EntryDirection entry_from = ENTRY_DIRECTION_IGNORE);
|
||||
/// cursor enters
|
||||
/// Note: this method must preserve the selection status. See:
|
||||
/// https://www.mail-archive.com/lyx-devel@lists.lyx.org/msg199001.html
|
||||
virtual Inset * editXY(Cursor & cur, int x, int y);
|
||||
|
||||
/// compute the size of the object returned in dim
|
||||
|
@ -5185,7 +5185,6 @@ int InsetTabular::dist(BufferView & bv, idx_type const cell, int x, int y) const
|
||||
Inset * InsetTabular::editXY(Cursor & cur, int x, int y)
|
||||
{
|
||||
//lyxerr << "InsetTabular::editXY: " << this << endl;
|
||||
cur.selection(false);
|
||||
cur.push(*this);
|
||||
cur.idx() = getNearestCell(cur.bv(), x, y);
|
||||
return cur.bv().textMetrics(&cell(cur.idx())->text()).editXY(cur, x, y);
|
||||
|
Loading…
Reference in New Issue
Block a user