From 84abaf93cf1a3139b45a62dee35cc0fbad154dcb Mon Sep 17 00:00:00 2001 From: buliabyak Date: Mon, 8 Oct 2007 05:22:10 +0000 Subject: [PATCH] tab handles in gradient tool only when they exist --- src/verbs.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/verbs.cpp b/src/verbs.cpp index 711f24879..e49263ede 100644 --- a/src/verbs.cpp +++ b/src/verbs.cpp @@ -80,6 +80,7 @@ #include "gradient-context.h" #include "shape-editor.h" #include "draw-context.h" +#include "gradient-drag.h" /** @@ -970,7 +971,8 @@ EditVerb::perform(SPAction *action, void *data, void *pdata) case SP_VERB_EDIT_SELECT_NEXT: if (tools_isactive(dt, TOOLS_NODES)) { SP_NODE_CONTEXT(ec)->shape_editor->select_next(); - } else if (tools_isactive(dt, TOOLS_GRADIENT)) { + } else if (tools_isactive(dt, TOOLS_GRADIENT) + && ec->_grdrag->isNonEmpty()) { sp_gradient_context_select_next (ec); } else { sp_selection_item_next(); @@ -979,7 +981,8 @@ EditVerb::perform(SPAction *action, void *data, void *pdata) case SP_VERB_EDIT_SELECT_PREV: if (tools_isactive(dt, TOOLS_NODES)) { SP_NODE_CONTEXT(ec)->shape_editor->select_prev(); - } else if (tools_isactive(dt, TOOLS_GRADIENT)) { + } else if (tools_isactive(dt, TOOLS_GRADIENT) + && ec->_grdrag->isNonEmpty()) { sp_gradient_context_select_prev (ec); } else { sp_selection_item_prev(); -- 2.30.2