diff options
| author | John Smith <john.smith7545@yahoo.com> | 2012-09-23 02:19:28 +0000 |
|---|---|---|
| committer | John Smith <john.smith7545@yahoo.com> | 2012-09-23 02:19:28 +0000 |
| commit | a01a3fa9d658218f3afbe5ab9922deb9c3ce38be (patch) | |
| tree | 695eae486fd113e903abd7353155f5abd183bf2b /src/widgets | |
| parent | Fix for 172222 : Move direct to specified layer (diff) | |
| download | inkscape-a01a3fa9d658218f3afbe5ab9922deb9c3ce38be.tar.gz inkscape-a01a3fa9d658218f3afbe5ab9922deb9c3ce38be.zip | |
Fix for 367548 : Invert doesnt work on objects with gradients
(bzr r11696)
Diffstat (limited to 'src/widgets')
| -rw-r--r-- | src/widgets/gradient-toolbar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widgets/gradient-toolbar.cpp b/src/widgets/gradient-toolbar.cpp index cc6b04413..7542e16b3 100644 --- a/src/widgets/gradient-toolbar.cpp +++ b/src/widgets/gradient-toolbar.cpp @@ -633,7 +633,7 @@ static void gr_linked_changed(GtkToggleAction *act, gpointer /*data*/) static void gr_reverse(GtkWidget * /*button*/, gpointer data) { SPDesktop *desktop = static_cast<SPDesktop *>(data); - sp_gradient_invert_selected_gradients(desktop, Inkscape::FOR_FILL_AND_STROKE); + sp_gradient_reverse_selected_gradients(desktop); } /* |
