summaryrefslogtreecommitdiffstats
path: root/src/gradient-context.cpp
diff options
context:
space:
mode:
authorJohn Smith <john.smith7545@yahoo.com>2012-09-22 09:59:01 +0000
committerJohn Smith <john.smith7545@yahoo.com>2012-09-22 09:59:01 +0000
commita8e76949f48267a704af633032e33d6982c682cc (patch)
treeb7363e4c0d1d41470e0b72c535487a429062a40a /src/gradient-context.cpp
parentFix for 166691 : Revert fix (diff)
downloadinkscape-a8e76949f48267a704af633032e33d6982c682cc.tar.gz
inkscape-a8e76949f48267a704af633032e33d6982c682cc.zip
Fix for 367548 : Invert doesnt work on objects with gradients
(bzr r11694)
Diffstat (limited to 'src/gradient-context.cpp')
-rw-r--r--src/gradient-context.cpp13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/gradient-context.cpp b/src/gradient-context.cpp
index aa8c8b929..356743eed 100644
--- a/src/gradient-context.cpp
+++ b/src/gradient-context.cpp
@@ -837,18 +837,7 @@ sp_gradient_context_root_handler(SPEventContext *event_context, GdkEvent *event)
case GDK_KEY_r:
case GDK_KEY_R:
if (MOD__SHIFT_ONLY) {
- // First try selected dragger
- if (drag && drag->selected) {
- drag->selected_reverse_vector();
- } else { // If no drag or no dragger selected, act on selection (both fill and stroke gradients)
- for (GSList const* i = selection->itemList(); i != NULL; i = i->next) {
- sp_item_gradient_reverse_vector(SP_ITEM(i->data), Inkscape::FOR_FILL);
- sp_item_gradient_reverse_vector(SP_ITEM(i->data), Inkscape::FOR_STROKE);
- }
- }
- // we did an undoable action
- DocumentUndo::done(sp_desktop_document (desktop), SP_VERB_CONTEXT_GRADIENT,
- _("Invert gradient"));
+ sp_gradient_invert_selected_gradients(desktop, Inkscape::FOR_FILL_AND_STROKE);
ret = TRUE;
}
break;