summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-05-13 17:36:12 -0500
committerJesse Luehrs <doy@tozt.net>2013-05-13 17:36:12 -0500
commitb07718805a3d4c07d391e1f8b8d9ff49d7f4de27 (patch)
treec0e4c7451be50dc29383a9d555bbd6786189e509
parentf384d8055ff4fb94c5dc1dff9535d437a735e869 (diff)
downloadspreadsheet-parsexlsx-b07718805a3d4c07d391e1f8b8d9ff49d7f4de27.tar.gz
spreadsheet-parsexlsx-b07718805a3d4c07d391e1f8b8d9ff49d7f4de27.zip
the default here should be 'general'
-rw-r--r--lib/Spreadsheet/ParseXLSX.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Spreadsheet/ParseXLSX.pm b/lib/Spreadsheet/ParseXLSX.pm
index 2827539..92d1b06 100644
--- a/lib/Spreadsheet/ParseXLSX.pm
+++ b/lib/Spreadsheet/ParseXLSX.pm
@@ -315,7 +315,7 @@ sub _parse_styles {
# Style => $iStyle,
# Key123 => $i123,
AlignH => $alignment
- ? $halign{$alignment->att('horizontal') || 'none'}
+ ? $halign{$alignment->att('horizontal') || 'general'}
: 0,
Wrap => $alignment
? $alignment->att('wrapText')