InsetTabular.cpp: fix bug #9570 also for branch

This commit is contained in:
Uwe Stöhr 2015-05-25 16:57:04 +02:00
parent 016775cc67
commit d9d3bda4b4
2 changed files with 3 additions and 4 deletions

View File

@ -5447,10 +5447,7 @@ void InsetTabular::tabularFeatures(Cursor & cur,
break;
case Tabular::ALIGN_DECIMAL:
if (tabular.column_info[tabular.cellColumn(cur.idx())].alignment == LYX_ALIGN_DECIMAL)
setAlign = LYX_ALIGN_CENTER;
else
setAlign = LYX_ALIGN_DECIMAL;
setAlign = LYX_ALIGN_DECIMAL;
break;
case Tabular::M_VALIGN_TOP:

View File

@ -208,6 +208,8 @@ What's new
- Fix default style of broadway layout.
- Fix button logic in table settings dialog (bug 9570).
* INTERNALS