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/hop.git


The following commit(s) were added to refs/heads/master by this push:
     new 225ff57aa7 When a transformation is selected, the underline thickness 
is doubled #3399
     new 31adf55d5d Merge pull request #3400 from nadment/3399
225ff57aa7 is described below

commit 225ff57aa74bf61eee2268fdaf24744826d95c97
Author: Nicolas Adment <[email protected]>
AuthorDate: Thu Nov 16 20:35:43 2023 +0100

    When a transformation is selected, the underline thickness is
    doubled #3399
---
 engine/src/main/java/org/apache/hop/pipeline/PipelinePainter.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/engine/src/main/java/org/apache/hop/pipeline/PipelinePainter.java 
b/engine/src/main/java/org/apache/hop/pipeline/PipelinePainter.java
index 11d4effb7c..bdbc72178e 100644
--- a/engine/src/main/java/org/apache/hop/pipeline/PipelinePainter.java
+++ b/engine/src/main/java/org/apache/hop/pipeline/PipelinePainter.java
@@ -844,6 +844,7 @@ public class PipelinePainter extends 
BasePainter<PipelineHopMeta, TransformMeta>
     // See if we need to draw a line under the name to make the name look like 
a hyperlink.
     //
     if (name.equals(mouseOverName)) {
+      gc.setLineWidth(lineWidth);      
       gc.drawLine(
           namePosition.x,
           namePosition.y + nameExtent.y,

Reply via email to