From 149f9e649bed8a8ec46e97b32d563ab0da331ba2 Mon Sep 17 00:00:00 2001 From: Tony Brix Date: Fri, 10 Feb 2017 06:03:17 -0600 Subject: [PATCH] fill color will change startColor and endColor (#90) --- src/PhpSpreadsheet/Style/Fill.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/PhpSpreadsheet/Style/Fill.php b/src/PhpSpreadsheet/Style/Fill.php index 4570e877..089fa6bb 100644 --- a/src/PhpSpreadsheet/Style/Fill.php +++ b/src/PhpSpreadsheet/Style/Fill.php @@ -173,6 +173,7 @@ class Fill extends Supervisor implements \PhpOffice\PhpSpreadsheet\IComparable } if (isset($pStyles['color'])) { $this->getStartColor()->applyFromArray($pStyles['color']); + $this->getEndColor()->applyFromArray($pStyles['color']); } } } else {