From d4e49cf974f418557543599316c5f2e246856df2 Mon Sep 17 00:00:00 2001 From: bulia byak Date: Mon, 6 Nov 2006 06:50:58 +0000 Subject: implement select next/prev in gradient tool as well (bzr r1919) --- src/verbs.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/verbs.cpp') diff --git a/src/verbs.cpp b/src/verbs.cpp index 1495c1f9e..4721de9d5 100644 --- a/src/verbs.cpp +++ b/src/verbs.cpp @@ -76,6 +76,7 @@ #include "sp-flowtext.h" #include "layer-fns.h" #include "node-context.h" +#include "gradient-context.h" /** @@ -944,6 +945,8 @@ EditVerb::perform(SPAction *action, void *data, void *pdata) case SP_VERB_EDIT_SELECT_NEXT: if (tools_isactive(dt, TOOLS_NODES)) { sp_nodepath_select_next(SP_NODE_CONTEXT(ec)->nodepath); + } else if (tools_isactive(dt, TOOLS_GRADIENT)) { + sp_gradient_context_select_next (ec); } else { sp_selection_item_next(); } @@ -951,6 +954,8 @@ EditVerb::perform(SPAction *action, void *data, void *pdata) case SP_VERB_EDIT_SELECT_PREV: if (tools_isactive(dt, TOOLS_NODES)) { sp_nodepath_select_prev(SP_NODE_CONTEXT(ec)->nodepath); + } else if (tools_isactive(dt, TOOLS_GRADIENT)) { + sp_gradient_context_select_prev (ec); } else { sp_selection_item_prev(); } -- cgit v1.2.3