From: Juergen Spitzmueller Date: Mon, 25 Jun 2018 10:01:26 +0000 (+0200) Subject: Fix definition of boolean X-Git-Tag: lyx-2.4.0dev-acb2ca7b~3346 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=21005cbd6f32f9b27c022db96df0f0c9dfef0df2;p=features.git Fix definition of boolean --- diff --git a/src/insets/InsetTabular.cpp b/src/insets/InsetTabular.cpp index ee454fb035..29c99bb36d 100644 --- a/src/insets/InsetTabular.cpp +++ b/src/insets/InsetTabular.cpp @@ -2773,7 +2773,8 @@ void Tabular::TeXRow(otexstream & os, row_type row, void Tabular::latex(otexstream & os, OutputParams const & runparams) const { - bool const is_tabular_star = !tabular_width.zero() && !hasVarwidthColumn(); + bool const is_tabular_star = !is_long_tabular && !tabular_width.zero() + && !hasVarwidthColumn(); bool const is_xltabular = is_long_tabular && (hasVarwidthColumn() || !tabular_width.zero()); TexRow::RowEntry pos = TexRow::textEntry(runparams.lastid, runparams.lastpos);