Commit e043ec59 authored by Alexander.Trofimov's avatar Alexander.Trofimov

recalc row height if not custom

parent a27a56a6
......@@ -1433,7 +1433,7 @@
} else {
isCustomHeight = 0 != (AscCommonExcel.g_nRowFlag_CustomHeight & row.flags);
// Берем высоту из модели, если она custom(баг 15618), либо дефолтную
if (row.h > 0) {
if (row.h > 0 && isCustomHeight) {
hR = row.h;
h = hR / 0.75;
h = (h | h) * 0.75; // 0.75 - это размер 1px в pt (можно было 96/72)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment