From 0265312297eff1ae196be956d223f26dcefe25e8 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Wed, 31 Jul 2019 14:34:21 -0700 Subject: [PATCH] Update include/wx/graphics.h fix style Co-Authored-By: VZ --- include/wx/graphics.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/wx/graphics.h b/include/wx/graphics.h index 9d5d4b80e9..739691d1cc 100644 --- a/include/wx/graphics.h +++ b/include/wx/graphics.h @@ -458,7 +458,10 @@ public: const wxColour& c1, const wxColour& c2) { m_gradientType = wxGRADIENT_LINEAR; - m_x1 = x1; m_y1 = y1; m_x2 = x2; m_y2 = y2; + m_x1 = x1; + m_y1 = y1; + m_x2 = x2; + m_y2 = y2; m_stops.SetStartColour(c1); m_stops.SetEndColour(c2); return *this;