From 699f019c76242f1c0408b357c53bfbaf289a6025 Mon Sep 17 00:00:00 2001 From: Robin Dunn <> Date: Tue, 3 Sep 2019 16:33:15 -0700 Subject: [PATCH] Add notes about gradient pens and gradient transforms to changes.txt --- docs/changes.txt | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/changes.txt b/docs/changes.txt index f8e072900a..b053bf8d84 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -150,6 +150,13 @@ All (GUI): in wxPGArrayEditorDialog. - Fix wxPropertyGrid issues with horizontal scrolling. - Add wxPG_DIALOG_TITLE wxPGProperty attribute. +- Add support for creating a wxGraphicsPen with a gradient. The gradient will + be used when stroking a path in a wxGraphicsContext, if supported by the + graphics context backend. +- Add support for applying a transformation matrix to a gradient for both + wxGraphicsPen and wxGraphicsBrush, if supported by the graphics context + backend. + wxGTK: