From: Georg Baum Date: Tue, 5 Jun 2007 07:01:47 +0000 (+0000) Subject: * src/tex2lyx/text.cpp X-Git-Tag: 1.6.10~9479 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=05f882271d2f2647410ec2d885f0cf1ef6c5db25;p=features.git * 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 --- diff --git a/src/tex2lyx/text.cpp b/src/tex2lyx/text.cpp index ade15f3f18..c713ab1307 100644 --- a/src/tex2lyx/text.cpp +++ b/src/tex2lyx/text.cpp @@ -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('[', ']');