Fix bug #8859: crash on alignment of two cells in tabular

The solution is the same as the other text-properties lfuns: use special loops when there is a multi-cell selection.
This commit is contained in:
Jean-Marc Lasgouttes 2013-10-04 12:52:00 +02:00
parent e709a30e3b
commit df8d2a5a87
2 changed files with 6 additions and 1 deletions

View File

@ -4326,6 +4326,8 @@ void InsetTabular::doDispatch(Cursor & cur, FuncRequest & cmd)
case LFUN_FONT_UULINE:
case LFUN_FONT_UWAVE:
case LFUN_LANGUAGE:
case LFUN_PARAGRAPH_PARAMS_APPLY:
case LFUN_PARAGRAPH_PARAMS:
case LFUN_WORD_CAPITALIZE:
case LFUN_WORD_UPCASE:
case LFUN_WORD_LOWCASE:

View File

@ -74,7 +74,10 @@ What's new
* USER INTERFACE
- Fix crash when saving document with module that is not present (bug 8523).
- Fix crash when saving document with module that is not present (bug
8523).
- Fix crash when changing alignment of several cells in tabular (bug 8859).
- Fix bug where searching for next change may leave an empty paragraph
where cursor was (bug 3199).