mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-18 21:45:24 +00:00
* 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:
parent
5053826965
commit
d2061138de
@ -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
|
||||
|
@ -313,6 +313,9 @@ void InsetCollapsable::doDispatch(LCursor & cur, FuncRequest & cmd)
|
||||
break;
|
||||
}
|
||||
|
||||
if (cur.selection())
|
||||
break;
|
||||
|
||||
switch (status()) {
|
||||
|
||||
case Collapsed:
|
||||
|
@ -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).
|
||||
|
Loading…
x
Reference in New Issue
Block a user