<div>Hello,<br></div><div>I originally posted this bug here: <a href="https://bugs.freedesktop.org/show_bug.cgi?id=33462">https://bugs.freedesktop.org/show_bug.cgi?id=33462</a></div><div><br></div><div>In versions later than OO v3.2.1, importing a docx file that contained a table with a fixed-height row somewhere caused all other rows in any tables to adopt this height making the document hard to use.</div>
<div><br></div><div>I found a fix. I&#39;d like to point that this tiny fix makes docx documents much more usable in LO. According to Noel Power it should be put into release v3.4. </div><div><br></div><div>As I&#39;m not really used to send patches over mailing lists so far, I hope you can use this kind of format. Feel free to use it under the LGPL v3+ and to check it in. :)</div>
<div><br></div><div>---</div><div>diff --git a/writerfilter/inc/resourcemodel/TableManager.hxx b/writerfilter/inc/resourcemodel/TableManager.hxx<br>index 7579ff6..6ea3da5 100644<br>--- a/writerfilter/inc/resourcemodel/TableManager.hxx<br>
+++ b/writerfilter/inc/resourcemodel/TableManager.hxx<br>@@ -221,7 +221,7 @@ class TableManager<br>         <br>         void resetRowProps()<br>         {<br>-            mpCellProps.reset();<br>+            mpRowProps.reset();<br>
         }<br>         <br>         void setRowProps(PropertiesPointer pProps)<br><br></div>