mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-12 16:50:39 +00:00
* math_hullinset.C (MathHullInset): do not lose the preview when
copying formulas (bug 1486) [patch from Bo peng] git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_4_X@19011 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
2007e23c10
commit
c992173f4c
@ -1,3 +1,8 @@
|
||||
2007-07-09 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
|
||||
|
||||
* math_hullinset.C (MathHullInset): do not lose the preview when
|
||||
copying formulas (bug 1486) [patch from Bo peng]
|
||||
|
||||
2007-05-18 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
|
||||
|
||||
* math_nestinset.C (getStatus): disallow insertion of special char
|
||||
|
@ -160,7 +160,7 @@ MathHullInset::MathHullInset(string const & type)
|
||||
MathHullInset::MathHullInset(MathHullInset const & other)
|
||||
: MathGridInset(other),
|
||||
type_(other.type_), nonum_(other.nonum_), label_(other.label_),
|
||||
preview_(new RenderPreview(this))
|
||||
preview_(new RenderPreview(*other.preview_, this))
|
||||
{}
|
||||
|
||||
|
||||
|
@ -60,6 +60,8 @@ What's new
|
||||
|
||||
- Fix display of Theorem-like environments when in appendix (bug 3351)
|
||||
|
||||
- Properly keep existing previews when pasting formulas (bug 1486).
|
||||
|
||||
- Fix display of math root inset when the exponent contains large
|
||||
things (bug 3295).
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user