diff options
| author | Randy Morgan <[email protected]> | 2012-07-20 20:28:07 +0900 |
|---|---|---|
| committer | Randy Morgan <[email protected]> | 2012-07-20 20:28:07 +0900 |
| commit | fd071c1779467ecce47a77993683aa947a62081a (patch) | |
| tree | af44da82db779a3141bf6b1b6a5af110b3fe243a /lib/axlsx/drawing/d_lbls.rb | |
| parent | 1f20f9450ff75ee5783cbb5d44a86559e6dbe41f (diff) | |
| download | caxlsx-fd071c1779467ecce47a77993683aa947a62081a.tar.gz caxlsx-fd071c1779467ecce47a77993683aa947a62081a.zip | |
specs for d_lbls and a patch to cover for nil relationships in a worksheet.
Diffstat (limited to 'lib/axlsx/drawing/d_lbls.rb')
| -rw-r--r-- | lib/axlsx/drawing/d_lbls.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/axlsx/drawing/d_lbls.rb b/lib/axlsx/drawing/d_lbls.rb index 6682bd07..faf7017d 100644 --- a/lib/axlsx/drawing/d_lbls.rb +++ b/lib/axlsx/drawing/d_lbls.rb @@ -23,7 +23,7 @@ module Axlsx # creates a new DLbls object def initialize(options={}) - d_lbl_pos = :best_fit + @d_lbl_pos = :best_fit initialize_defaults options.each do |o| self.send("#{o[0]}=", o[1]) if self.respond_to? "#{o[0]}=" |
