InsetCollapsable::insetButtonRelease returned the wrong return value in

some circumstances.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4152 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Vigna 2002-05-13 08:49:43 +00:00
parent 3e9cb61e17
commit 983c8fad11
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2002-05-13 Juergen Vigna <jug@sad.it>
* insetcollapsable.C (insetButtonRelease): returned wrong return
value.
2002-05-09 Juergen Vigna <jug@sad.it>
* insetcollapsable.C (edit): first_after_edit should only be

View File

@ -355,7 +355,7 @@ bool InsetCollapsable::insetButtonRelease(BufferView * bv,
if ((button == 3) && !ret) {
return showInsetDialog(bv);
}
return false;
return ret;
}