Browse Source

Merge pull request #252 from regorov/master

fixes issue #251
Geoffrey J. Teale 9 years ago
parent
commit
929fb790b7
1 changed files with 2 additions and 0 deletions
  1. 2 0
      xmlStyle.go

+ 2 - 0
xmlStyle.go

@@ -188,6 +188,8 @@ func (styles *xlsxStyleSheet) getStyle(styleIndex int) *Style {
 		if xf.Alignment.Vertical != "" {
 			style.Alignment.Vertical = xf.Alignment.Vertical
 		}
+		style.Alignment.WrapText = xf.Alignment.WrapText
+
 		styles.Lock()
 		styles.styleCache[styleIndex] = style
 		styles.Unlock()