From: Stephan Witt Date: Fri, 8 Oct 2010 05:21:19 +0000 (+0000) Subject: cell movement inside tables should not mark the document as modified X-Git-Tag: 2.0.0~2444 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=0dc22fb82ff5a750be94b8a6eac4e53b1904b7e7;p=lyx.git cell movement inside tables should not mark the document as modified git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35570 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/LyXAction.cpp b/src/LyXAction.cpp index 6d4dc69d66..dfd14f2a8d 100644 --- a/src/LyXAction.cpp +++ b/src/LyXAction.cpp @@ -2070,14 +2070,14 @@ void LyXAction::init() * \li Origin: Jug, 22 May 2000 * \endvar */ - { LFUN_CELL_BACKWARD, "cell-backward", Noop, Edit }, + { LFUN_CELL_BACKWARD, "cell-backward", ReadOnly | NoUpdate, Edit }, /*! * \var lyx::FuncCode lyx::LFUN_CELL_FORWARD * \li Action: Moves the cursor to the next cell inside the table. * \li Syntax: cell-forward * \endvar */ - { LFUN_CELL_FORWARD, "cell-forward", Noop, Edit }, + { LFUN_CELL_FORWARD, "cell-forward", ReadOnly | NoUpdate, Edit }, /*! * \var lyx::FuncCode lyx::LFUN_CELL_SPLIT * \li Action: Splits cell and shifts right part to the next cell (inside the math grid).