Spare .copy() for array removed.

This commit is contained in:
Kolan Sh 2017-12-25 13:18:50 +03:00
parent 6c693fa1fe
commit 2be8374cb0
1 changed files with 1 additions and 1 deletions

View File

@ -1143,7 +1143,7 @@ namespace Gtk.CairoChart {
}
protected virtual Point[] sort_points (Series s, Series.Sort sort) {
var points = s.points.copy();
var points = s.points;
switch(sort) {
case Series.Sort.BY_X:
sort_points_delegate(points, (a, b) => {