From e6c46ffefb1c6875e2afe0fce9823b254bdb40ea Mon Sep 17 00:00:00 2001
From: Benjamin Williams <bwilliams@kirix.com>
Date: Sun, 19 Nov 2006 13:31:15 +0000
Subject: [PATCH] GradientFillLinear() on wxMSW now draws on the rectangle
 border as well, making it consistent with the gernaic version as well as
 wxDC::DrawRectangle()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43520 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
---
 src/msw/dc.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/msw/dc.cpp b/src/msw/dc.cpp
index 8c7a50a982..dd4750f6a0 100644
--- a/src/msw/dc.cpp
+++ b/src/msw/dc.cpp
@@ -2686,8 +2686,8 @@ void wxDC::DoGradientFillLinear (const wxRect& rect,
 
         vertices[0].x = rect.GetLeft();
         vertices[0].y = rect.GetTop();
-        vertices[1].x = rect.GetRight();
-        vertices[1].y = rect.GetBottom();
+        vertices[1].x = rect.GetRight()+1;
+        vertices[1].y = rect.GetBottom()+1;
 
         vertices[firstVertex].Red = (COLOR16)(initialColour.Red() << 8);
         vertices[firstVertex].Green = (COLOR16)(initialColour.Green() << 8);
-- 
2.49.0