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 6f70cb1808 Fix small alignment issue in DetectLanguageDialog (#7232)
6f70cb1808 is described below

commit 6f70cb18086da5a033532099da5b9e571d79fb63
Author: Nicolas Adment <[email protected]>
AuthorDate: Sun Jun 7 11:11:06 2026 +0200

    Fix small alignment issue in DetectLanguageDialog (#7232)
---
 .../apache/hop/pipeline/transforms/language/DetectLanguageDialog.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/plugins/transforms/detectlanguage/src/main/java/org/apache/hop/pipeline/transforms/language/DetectLanguageDialog.java
 
b/plugins/transforms/detectlanguage/src/main/java/org/apache/hop/pipeline/transforms/language/DetectLanguageDialog.java
index a2b3a65f05..433b82db8a 100644
--- 
a/plugins/transforms/detectlanguage/src/main/java/org/apache/hop/pipeline/transforms/language/DetectLanguageDialog.java
+++ 
b/plugins/transforms/detectlanguage/src/main/java/org/apache/hop/pipeline/transforms/language/DetectLanguageDialog.java
@@ -122,7 +122,7 @@ public class DetectLanguageDialog extends 
BaseTransformDialog implements ITransf
     PropsUi.setLook(wParallelism);
     wParallelism.setToolTipText(getString(PKG, 
"DetectLanguageDialog.Parallelism.Tooltip"));
     FormData fdParallelism = new FormData();
-    fdParallelism.left = new FormAttachment(middle, -margin);
+    fdParallelism.left = new FormAttachment(middle, 0);
     fdParallelism.top = new FormAttachment(wCorpusFieldName, margin);
     fdParallelism.right = new FormAttachment(100, 0);
     wParallelism.setLayoutData(fdParallelism);

Reply via email to