From 4c44ddad015300b4402e1fdb6ecf28684dc0911c Mon Sep 17 00:00:00 2001 From: Enrico Forestieri Date: Wed, 16 Feb 2011 22:19:49 +0000 Subject: [PATCH] Don't disable apply button if one (or more) of vertical alignment, rotation, or long table settings are changed. Fixes bug #7308. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37704 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/insets/InsetTabular.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/insets/InsetTabular.cpp b/src/insets/InsetTabular.cpp index 2f0a111fee..3e2f6b304c 100644 --- a/src/insets/InsetTabular.cpp +++ b/src/insets/InsetTabular.cpp @@ -4323,8 +4323,10 @@ bool InsetTabular::getStatus(Cursor & cur, FuncRequest const & cmd, return true; case Tabular::SET_TABULAR_WIDTH: - status.setEnabled(!tabular.rotate && !tabular.is_long_tabular - && tabular.tabular_valignment == Tabular::LYX_VALIGN_MIDDLE); + status.setEnabled(tabular.tabular_width.zero() + || (!tabular.rotate && !tabular.is_long_tabular + && tabular.tabular_valignment == + Tabular::LYX_VALIGN_MIDDLE)); break; case Tabular::SET_DECIMAL_POINT: -- 2.39.2