From: Abdelrazak Younes Date: Fri, 2 Feb 2007 10:31:22 +0000 (+0000) Subject: Revert commit 17010. X-Git-Tag: 1.6.10~10930 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=475232ed47a5497b13453ffd3a20cceff2118847;p=features.git Revert commit 17010. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17025 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/text3.C b/src/text3.C index fe9c9cd784..d5b7ff0bdd 100644 --- a/src/text3.C +++ b/src/text3.C @@ -719,13 +719,17 @@ void LyXText::dispatch(LCursor & cur, FuncRequest & cmd) recordUndo(cur); InsetBase * inset = createInset(bv, cmd); if (inset) { - Paragraph & par = pars_[cur.pit()]; - // FIXME (Abdel 01/02/2006: - // What follows is a partial fix for bug 2154: + // FIXME (Abdel 01/02/2006): + // What follows would be a partial fix for bug 2154: // http://bugzilla.lyx.org/show_bug.cgi?id=2154 - // This will automatically put the label inset _after_ a - // numbered section. It is possible to extend the mechanism + // This automatically put the label inset _after_ a + // numbered section. It should be possible to extend the mechanism // to any kind of LateX environement. + // The correct way to fix that bug would be at LateX generation. + // I'll let the code here for reference as it could be used for some + // other feature like "automatic labelling". + /* + Paragraph & par = pars_[cur.pit()]; if (inset->lyxCode() == InsetBase::LABEL_CODE && par.layout()->labeltype == LABEL_COUNTER) { // Go to the end of the paragraph @@ -736,6 +740,7 @@ void LyXText::dispatch(LCursor & cur, FuncRequest & cmd) FuncRequest fr(LFUN_BREAK_PARAGRAPH); dispatch(cur, fr); } + */ insertInset(cur, inset); cur.posRight(); }