diff options
Diffstat (limited to 'cui/source/tabpages/numpages.cxx')
-rw-r--r-- | cui/source/tabpages/numpages.cxx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/cui/source/tabpages/numpages.cxx b/cui/source/tabpages/numpages.cxx index 8f1a169f59d3..eb9fea50f28f 100644 --- a/cui/source/tabpages/numpages.cxx +++ b/cui/source/tabpages/numpages.cxx @@ -2451,6 +2451,7 @@ void SvxNumberingPreview::Paint(vcl::RenderContext& rRenderContext, const ::tool break; case SvxNumberFormat::SPACE: case SvxNumberFormat::NOTHING: + case SvxNumberFormat::NEWLINE: { nTextXPos = nNumberXPos + nBulletWidth; } @@ -2861,6 +2862,10 @@ void SvxNumPositionTabPage::InitControls() { nPos = 2; } + else if ( aNumFmtArr[nLvl]->GetLabelFollowedBy() == SvxNumberFormat::NEWLINE ) + { + nPos = 3; + } m_pLabelFollowedByLB->SelectEntryPos( nPos ); } else @@ -3323,6 +3328,10 @@ IMPL_LINK_NOARG(SvxNumPositionTabPage, LabelFollowedByHdl_Impl, ListBox&, void) { eLabelFollowedBy = SvxNumberFormat::NOTHING; } + else if ( nPos == 3 ) + { + eLabelFollowedBy = SvxNumberFormat::NEWLINE; + } } // set value at the chosen list levels |