]> git.lyx.org Git - features.git/blobdiff - src/insets/insettabular.C
Honor FINISHED_XXX flags in LocalDispatch of InsetText/Tabular.
[features.git] / src / insets / insettabular.C
index 5fbe7fdeea75f4f5b4ee60fe49df82d42a65c2e0..643d676bb8a9dfd59fa964a764e950c49c9208d6 100644 (file)
@@ -878,6 +878,12 @@ InsetTabular::localDispatch(BufferView * bv, kb_action action,
                        updateLocal(bv, CELL, false);
                        the_locking_inset->toggleInsetCursor(bv);
                        return result;
+               } else if (result == FINISHED_UP) {
+                       action = LFUN_UP;
+               } else if (result == FINISHED_DOWN) {
+                       action = LFUN_DOWN;
+               } else if (result == FINISHED_RIGHT) {
+                       action = LFUN_RIGHT;
                }
        }