From: Pavel Sanda Date: Thu, 31 May 2012 12:02:40 +0000 (+0200) Subject: Backport f6921819. X-Git-Tag: 2.0.4~41 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=99ada23d979d4ff1bc076541b3028fc8a0f2f1a6;p=features.git Backport f6921819. --- diff --git a/src/frontends/qt4/GuiTabular.cpp b/src/frontends/qt4/GuiTabular.cpp index 090dca83de..2a011e4fa5 100644 --- a/src/frontends/qt4/GuiTabular.cpp +++ b/src/frontends/qt4/GuiTabular.cpp @@ -555,6 +555,8 @@ docstring GuiTabular::dialogToParams() const // if (newpageCB->isChecked()) setParam(param_str, Tabular::SET_LTNEWPAGE); + else + setParam(param_str, Tabular::UNSET_LTNEWPAGE); // if (captionStatusCB->isChecked()) setParam(param_str, Tabular::SET_LTCAPTION); diff --git a/src/insets/InsetTabular.cpp b/src/insets/InsetTabular.cpp index 3c97de5d66..1e91d5cb88 100644 --- a/src/insets/InsetTabular.cpp +++ b/src/insets/InsetTabular.cpp @@ -165,6 +165,7 @@ TabularFeature tabularFeature[] = { Tabular::SET_LTLASTFOOT, "set-ltlastfoot", true }, { Tabular::UNSET_LTLASTFOOT, "unset-ltlastfoot", true }, { Tabular::SET_LTNEWPAGE, "set-ltnewpage", false }, + { Tabular::UNSET_LTNEWPAGE, "unset-ltnewpage", false }, { Tabular::TOGGLE_LTCAPTION, "toggle-ltcaption", false }, { Tabular::SET_LTCAPTION, "set-ltcaption", false }, { Tabular::UNSET_LTCAPTION, "unset-ltcaption", false }, @@ -4641,6 +4642,9 @@ bool InsetTabular::getStatus(Cursor & cur, FuncRequest const & cmd, case Tabular::UNSET_LTHEAD: status.setOnOff(!tabular.getRowOfLTHead(sel_row_start, dummyltt)); break; + case Tabular::UNSET_LTNEWPAGE: + status.setOnOff(!tabular.getLTNewPage(sel_row_start)); + break; case Tabular::SET_LTFOOT: status.setEnabled(sel_row_start == sel_row_end @@ -5657,8 +5661,10 @@ void InsetTabular::tabularFeatures(Cursor & cur, tabular.setLTFoot(row, flag, ltt, true); break; + case Tabular::UNSET_LTNEWPAGE: + flag = false; case Tabular::SET_LTNEWPAGE: - tabular.setLTNewPage(row, !tabular.getLTNewPage(row)); + tabular.setLTNewPage(row, flag); break; case Tabular::SET_LTCAPTION: { diff --git a/src/insets/InsetTabular.h b/src/insets/InsetTabular.h index 3a3f63a602..bc4542c5a2 100644 --- a/src/insets/InsetTabular.h +++ b/src/insets/InsetTabular.h @@ -233,6 +233,7 @@ public: UNSET_LTLASTFOOT, /// SET_LTNEWPAGE, + UNSET_LTNEWPAGE, /// TOGGLE_LTCAPTION, /// diff --git a/status.20x b/status.20x index 9343bff625..cb76a89641 100644 --- a/status.20x +++ b/status.20x @@ -223,6 +223,8 @@ What's new - Fix cursor bug when using backspace after the spellchecker replaced a word. +- Fix "Page break on current row" in tabular dialog (bug 8180). + * DOCUMENTATION AND LOCALIZATION