mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-23 05:25:26 +00:00
* src/buffer_funcs.C (setCounter): Ignore the layout label string in
paragraphs without label git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13633 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
d7bccc5f88
commit
cc0a9f811c
@ -496,7 +496,9 @@ void setCounter(Buffer const & buf, ParIterator & it)
|
||||
}
|
||||
|
||||
par.params().labelString(s);
|
||||
} else
|
||||
} else if (layout->labeltype == LABEL_NO_LABEL)
|
||||
par.params().labelString(string());
|
||||
else
|
||||
par.params().labelString(buf.B_(layout->labelstring()));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user