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 d6b73a0771 Add left margin to “Do not show at startup” checkbox in
welcome dialog (#6425)
d6b73a0771 is described below
commit d6b73a0771bfe189d8c58383166112ae1166af9b
Author: lance <[email protected]>
AuthorDate: Mon Jan 19 23:22:45 2026 +0800
Add left margin to “Do not show at startup” checkbox in welcome dialog
(#6425)
Signed-off-by: lance <[email protected]>
---
ui/src/main/java/org/apache/hop/ui/hopgui/welcome/WelcomeDialog.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/ui/src/main/java/org/apache/hop/ui/hopgui/welcome/WelcomeDialog.java
b/ui/src/main/java/org/apache/hop/ui/hopgui/welcome/WelcomeDialog.java
index 29c0401ae4..64b1be66ff 100644
--- a/ui/src/main/java/org/apache/hop/ui/hopgui/welcome/WelcomeDialog.java
+++ b/ui/src/main/java/org/apache/hop/ui/hopgui/welcome/WelcomeDialog.java
@@ -119,7 +119,7 @@ public class WelcomeDialog {
PropsUi.setLook(doNotShow);
FormData fdDoNotShow = new FormData();
fdDoNotShow.bottom = new FormAttachment(100, 0);
- fdDoNotShow.left = new FormAttachment(0, 0);
+ fdDoNotShow.left = new FormAttachment(0, margin);
fdDoNotShow.right = new FormAttachment(100, 0);
doNotShow.setLayoutData(fdDoNotShow);