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 ef8485840f HOP-4252 fixed execution information location editor width, 
height
     new 0a1464f1e1 Merge pull request #1709 from bamaer/HOP-4252
ef8485840f is described below

commit ef8485840f7771e67215d3d74b96e90b202565bb
Author: Bart Maertens <[email protected]>
AuthorDate: Thu Sep 29 09:38:58 2022 +0200

    HOP-4252 fixed execution information location editor width, height
---
 .../org/apache/hop/ui/execution/ExecutionInfoLocationEditor.java   | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git 
a/ui/src/main/java/org/apache/hop/ui/execution/ExecutionInfoLocationEditor.java 
b/ui/src/main/java/org/apache/hop/ui/execution/ExecutionInfoLocationEditor.java
index 1de5865bcc..34390769c8 100644
--- 
a/ui/src/main/java/org/apache/hop/ui/execution/ExecutionInfoLocationEditor.java
+++ 
b/ui/src/main/java/org/apache/hop/ui/execution/ExecutionInfoLocationEditor.java
@@ -273,6 +273,13 @@ public class ExecutionInfoLocationEditor extends 
MetadataEditor<ExecutionInfoLoc
     //
     addGuiCompositeWidgets();
 
+    FormData fdMainSComp = new FormData();
+    fdMainSComp.top = new FormAttachment(0,0);
+    fdMainSComp.left = new FormAttachment(0,0);
+    fdMainSComp.right = new FormAttachment(95, 0);
+    fdMainSComp.bottom = new FormAttachment(95, 0);
+    wMainSComp.setLayoutData(fdMainSComp);
+
     FormData fdMainComp = new FormData();
     fdMainComp.left = new FormAttachment(0, 0);
     fdMainComp.top = new FormAttachment(0, 0);

Reply via email to