* insetcollapsable.C (doDispatch): do nothing on mouse release if

there is a selection.



git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_4_X@16336 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2006-12-19 15:39:26 +00:00
parent 5053826965
commit d2061138de
3 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2006-12-19 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* insetcollapsable.C (doDispatch): do nothing on mouse release if
there is a selection.
2006-12-11 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* insettabular.C (doDispatch): call mouseSetCursor on mouse

View File

@ -313,6 +313,9 @@ void InsetCollapsable::doDispatch(LCursor & cur, FuncRequest & cmd)
break;
}
if (cur.selection())
break;
switch (status()) {
case Collapsed:

View File

@ -113,6 +113,9 @@ What's new
- Avoid "wide" insets in text that is centered or right-justified.
- when selecting with the mouse an area that ends on a collapsable
inset, do not open it by mistake.
- Give a better error message for missing layout include files.
- Don't show starred sections in Document->Numbering & TOC (bug 2910).