From 79e3fd9df519bc5aad349f137d4aa74168e9ef2e Mon Sep 17 00:00:00 2001 From: Mike Kaganski Date: Sat, 2 Jul 2016 23:07:15 +1000 Subject: tdf#100734: Update bullet of paragraph on UNDO Change-Id: I1afe0b4ca537eea752d3bced8bbc8944380c3514 Reviewed-on: https://gerrit.libreoffice.org/26874 Tested-by: Jenkins Reviewed-by: Andras Timar (cherry picked from commit 3a9c151e6eeb3c81902fab2644522a8df9e7161d) Reviewed-on: https://gerrit.libreoffice.org/26893 Reviewed-by: Miklos Vajna --- editeng/source/outliner/outliner.cxx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'editeng') diff --git a/editeng/source/outliner/outliner.cxx b/editeng/source/outliner/outliner.cxx index 906367c796e1..f8652568f8d5 100644 --- a/editeng/source/outliner/outliner.cxx +++ b/editeng/source/outliner/outliner.cxx @@ -1497,6 +1497,8 @@ void Outliner::ParaAttribsChanged( sal_Int32 nPara ) if ( pParaList->GetParagraphCount() == pEditEngine->GetParagraphCount() ) { Paragraph* pPara = pParaList->GetParagraph( nPara ); + // tdf#100734: force update of bullet + pPara->Invalidate(); const SfxInt16Item& rLevel = static_cast( pEditEngine->GetParaAttrib( nPara, EE_PARA_OUTLLEVEL ) ); if ( pPara && pPara->GetDepth() != rLevel.GetValue() ) { -- cgit