diff options
author | Oliver Specht <oliver.specht@cib.de> | 2015-12-01 16:19:24 +0100 |
---|---|---|
committer | Oliver Specht <oliver.specht@cib.de> | 2015-12-01 16:20:01 +0100 |
commit | 9ae2d9ff4be259ad60bbb10a7488e38ca4eefc11 (patch) | |
tree | 0ea567adee63f867e48b111d128e3cbac3b40b65 | |
parent | 8cf2c1353cfa5f95d1aa9551035fda721d5345d8 (diff) |
tdf#88443:percent value fixed
Change-Id: I221f07b930fa1f152b9bf379aa966c02b936abb2
-rw-r--r-- | sw/source/core/doc/doclay.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/doc/doclay.cxx b/sw/source/core/doc/doclay.cxx index 9aa4b4a19c0c..a9d6835d58f3 100644 --- a/sw/source/core/doc/doclay.cxx +++ b/sw/source/core/doc/doclay.cxx @@ -837,7 +837,7 @@ lcl_InsertLabel(SwDoc & rDoc, SwTextFormatColls *const pTextFormatCollTable, isMath = ( SotExchange::IsMath( aCLSID ) != 0 ); } } - aFrameSize.SetWidthPercent(isMath ? 0 : 1000); + aFrameSize.SetWidthPercent(isMath ? 0 : 100); aFrameSize.SetHeightPercent(SwFormatFrameSize::SYNCED); pNewSet->Put( aFrameSize ); |