From ce45b2802ff27cf21078428ce0558dafeebe21cd Mon Sep 17 00:00:00 2001 From: ElenaSubbotina Date: Wed, 31 May 2017 13:46:49 +0300 Subject: [PATCH] fix bug #34953 --- .../source/XlsFormat/Logic/Biff_unions/CELLTABLE.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ASCOfficeXlsFile2/source/XlsFormat/Logic/Biff_unions/CELLTABLE.cpp b/ASCOfficeXlsFile2/source/XlsFormat/Logic/Biff_unions/CELLTABLE.cpp index ec5b446850..28cdb4da52 100644 --- a/ASCOfficeXlsFile2/source/XlsFormat/Logic/Biff_unions/CELLTABLE.cpp +++ b/ASCOfficeXlsFile2/source/XlsFormat/Logic/Biff_unions/CELLTABLE.cpp @@ -221,7 +221,7 @@ int CELL_GROUP::serialize(std::wostream & stream) CP_XML_ATTR(L"customFormat", true); } } - if (row->miyRw > 0/* && std::abs(row->miyRw/20. - sheet_info.defaultRowHeight) > 0.01*/) + if (row->miyRw > 0 && row->miyRw < 0x8000) //v8_14A_1b13.xls { CP_XML_ATTR(L"ht", row->miyRw / 20.); CP_XML_ATTR(L"customHeight", true);