n#693238: fixed docx import of tabs set after the end margin
Added a new compatibility option to keep the previous behavior, but changed the default to avoid lines insertion for tabs when there are tab stops set beyond the end margin
This commit is contained in:
committed by
Cédric Bosdonnat
parent
b2e0b5f3f5
commit
fd886cdc6a
@@ -202,6 +202,7 @@ bool SwDoc::get(/*[in]*/ DocumentSettingId id) const
|
||||
case INVERT_BORDER_SPACING: return mbInvertBorderSpacing;
|
||||
case COLLAPSE_EMPTY_CELL_PARA: return mbCollapseEmptyCellPara;
|
||||
case SMALL_CAPS_PERCENTAGE_66: return mbSmallCapsPercentage66;
|
||||
case TAB_OVERFLOW: return mbTabOverflow;
|
||||
|
||||
case BROWSE_MODE: return mbLastBrowseMode; // Attention: normally the ViewShell has to be asked!
|
||||
case HTML_MODE: return mbHTMLMode;
|
||||
@@ -336,6 +337,10 @@ void SwDoc::set(/*[in]*/ DocumentSettingId id, /*[in]*/ bool value)
|
||||
case SMALL_CAPS_PERCENTAGE_66:
|
||||
mbSmallCapsPercentage66 = value;
|
||||
break;
|
||||
|
||||
case TAB_OVERFLOW:
|
||||
mbTabOverflow = value;
|
||||
break;
|
||||
// COMPATIBILITY FLAGS END
|
||||
|
||||
case BROWSE_MODE: //can be used temporary (load/save) when no ViewShell is avaiable
|
||||
|
Reference in New Issue
Block a user