Browse Source

fixes issue #251

Robert Egorov 9 years ago
parent
commit
e72243a560
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()