This is an automated email from the ASF dual-hosted git repository.

hansva pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/hop.git


The following commit(s) were added to refs/heads/main by this push:
     new f59d10d02e Fix #5736 (#5739)
f59d10d02e is described below

commit f59d10d02e73697d2e725b4759f29d596aca5741
Author: lance <[email protected]>
AuthorDate: Mon Sep 29 15:56:31 2025 +0800

    Fix #5736 (#5739)
    
    * fix: 'True'False' dialog appears twice when drawing connection from 
Filter to other transform
---
 .../java/org/apache/hop/ui/hopgui/file/pipeline/HopGuiPipelineGraph.java | 1 -
 1 file changed, 1 deletion(-)

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 8a9cc728dc..20bb3393c7 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
@@ -729,7 +729,6 @@ public class HopGuiPipelineGraph extends HopGuiAbstractGraph
             return;
           } else if (e.button == 1 && startHopTransform != null && 
endHopTransform == null) {
             candidate = new PipelineHopMeta(startHopTransform, 
currentTransform);
-            addCandidateAsHop(e.x, e.y);
           } else if (e.button == 2 || (e.button == 1 && shift)) {
             // SHIFT CLICK is start of drag to create a new hop
             //

Reply via email to