mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
Fix Cut&Paste bug.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20445 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
731ae937ea
commit
0dc4a1fa97
@ -1436,7 +1436,8 @@ Inset * TextMetrics::checkInsetHit(int x, int y)
|
||||
<< " yo: " << p.y_ - dim.asc << "..." << p.y_ + dim.des
|
||||
<< endl;
|
||||
|
||||
if (x >= p.x_ && p.x_ + dim.wid
|
||||
if (x >= p.x_
|
||||
&& x <= p.x_ + dim.wid
|
||||
&& y >= p.y_ - dim.asc
|
||||
&& y <= p.y_ + dim.des) {
|
||||
LYXERR(Debug::DEBUG)
|
||||
|
Loading…
Reference in New Issue
Block a user