Commit ef082822 authored by olau@iola.dk's avatar olau@iola.dk

Fixed silly recently-introduced bug that prevents the shadows from showing up

git-svn-id: https://flot.googlecode.com/svn/trunk@15 1e0a6537-2640-0410-bfb7-f154510ff394
parent cf12db47
......@@ -541,7 +541,7 @@
s.lines = $.extend(true, {}, options.lines, s.lines);
s.points = $.extend(true, {}, options.points, s.points);
s.bars = $.extend(true, {}, options.bars, s.bars);
if (s.shadowSize != null)
if (s.shadowSize == null)
s.shadowSize = options.shadowSize;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment