Browse Source

Fixed bug in GetSize(XElement Xml)

br elements --\n-- should return size = 1
master
coffeycathal_cp 15 years ago
parent
commit
8da395c29b
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      DocX/HelperFunctions.cs

+ 1
- 1
DocX/HelperFunctions.cs View File

@@ -20,7 +20,7 @@ namespace Novacode
case "tab":
return 1;
case "br":
return 0;
return 1;
case "t":
goto case "delText";
case "delText":

Loading…
Cancel
Save