mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
small fix to the locking nightmare
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8031 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
eb1bad7210
commit
3a36ee90ff
@ -1,3 +1,7 @@
|
||||
2003-11-04 Alfredo Braunstein <abraunst@libero.it>
|
||||
|
||||
* insettabular.C (lockInsetInInset): small fix
|
||||
|
||||
2003-11-04 Lars Gullik Bjønnes <larsbj@gullik.net>
|
||||
|
||||
* insettext.C (priv_dispatch): some DispatchResult type cleanup,
|
||||
|
@ -450,9 +450,14 @@ bool InsetTabular::lockInsetInInset(BufferView * bv, UpdatableInset * inset)
|
||||
resetPos(bv);
|
||||
return true;
|
||||
}
|
||||
actcell = i;
|
||||
in->dispatch(FuncRequest(bv, LFUN_INSET_EDIT));
|
||||
return the_locking_inset->lockInsetInInset(bv, inset);
|
||||
if (in->lockInsetInInset(bv, inset)) {
|
||||
actcell = i;
|
||||
the_locking_inset = in;
|
||||
locked = true;
|
||||
resetPos(bv);
|
||||
in->dispatch(FuncRequest(bv, LFUN_INSET_EDIT));
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user