mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-23 02:14:50 +00:00
* src/tex2lyx/text.cpp
(parse_box): Fix default height value (from Micha Feigin) git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18675 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
abab358ff6
commit
05f882271d
@ -591,9 +591,11 @@ void parse_box(Parser & p, ostream & os, unsigned flags, bool outer,
|
||||
{
|
||||
string position;
|
||||
string inner_pos;
|
||||
string height_value = "0";
|
||||
string height_unit = "pt";
|
||||
string height_special = "none";
|
||||
// We need to set the height to the LaTeX default of 1\\totalheight
|
||||
// for the case when no height argument is given
|
||||
string height_value = "1";
|
||||
string height_unit = "in";
|
||||
string height_special = "totalheight";
|
||||
string latex_height;
|
||||
if (p.next_token().asInput() == "[") {
|
||||
position = p.getArg('[', ']');
|
||||
|
Loading…
Reference in New Issue
Block a user