Let InsetWrap find its InsetLayout.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_6_X@27896 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2008-12-16 15:36:27 +00:00
parent e836235dcb
commit b2ee876447
3 changed files with 11 additions and 1 deletions

View File

@ -236,6 +236,14 @@ InsetLayout Float
MultiPar true
End
InsetLayout Wrap
LabelFont
Color collapsable
Size Small
EndFont
MultiPar true
End
InsetLayout URL
LyXType standard
LatexName url

View File

@ -62,7 +62,7 @@ InsetWrap::~InsetWrap()
docstring InsetWrap::name() const
{
return from_utf8(params_.type);
return "Wrap:" + from_utf8(params_.type);
}

View File

@ -60,6 +60,8 @@ What's new
- Set buffer status to changed and record UNDO after modifying insets such
as pagebreaks or citations via context menu.
- Fix on-screen layout of wrap floats.
- Improve debug output when tracing what actions are triggered.