This is an automated email from the ASF dual-hosted git repository.
hansva pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hop.git
The following commit(s) were added to refs/heads/master by this push:
new 276d671 Hop-2905 Fix pipeline context action label to create hop
new 6e45889 Merge pull request #822 from nadment/HOP-2905
276d671 is described below
commit 276d671a0add000598af8cf9e75e6e9fb6e21e1c
Author: nadment <[email protected]>
AuthorDate: Mon May 24 01:52:24 2021 +0200
Hop-2905 Fix pipeline context action label to create hop
---
.../org/apache/hop/ui/hopgui/file/pipeline/HopGuiPipelineGraph.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/ui/src/main/java/org/apache/hop/ui/hopgui/file/pipeline/HopGuiPipelineGraph.java
b/ui/src/main/java/org/apache/hop/ui/hopgui/file/pipeline/HopGuiPipelineGraph.java
index 4b89108..702aa45 100644
---
a/ui/src/main/java/org/apache/hop/ui/hopgui/file/pipeline/HopGuiPipelineGraph.java
+++
b/ui/src/main/java/org/apache/hop/ui/hopgui/file/pipeline/HopGuiPipelineGraph.java
@@ -3374,8 +3374,8 @@ public class HopGuiPipelineGraph extends
HopGuiAbstractGraph
id = "pipeline-graph-transform-10050-create-hop",
parentId = HopGuiPipelineTransformContext.CONTEXT_ID,
type = GuiActionType.Create,
- name = "i18n::HopGuiPipelineGraph.TransformAction.EditTransform.Name",
- tooltip =
"i18n::HopGuiPipelineGraph.TransformAction.EditTransform.Tooltip",
+ name = "i18n::HopGuiPipelineGraph.HopAction.CreateHop.Name",
+ tooltip = "i18n::HopGuiPipelineGraph.HopAction.CreateHop.Tooltip",
image = "ui/images/hop.svg",
category = "Basic",
categoryOrder = "1")
@@ -3384,7 +3384,7 @@ public class HopGuiPipelineGraph extends
HopGuiAbstractGraph
endHopTransform = null;
redraw();
}
-
+
private boolean pointOnLine(int x, int y, int[] line) {
int dx, dy;
int pm = HOP_SEL_MARGIN / 2;