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 91dffbf577 issue #7412 : Dialog size not remembered in data preview
window (#7413)
91dffbf577 is described below
commit 91dffbf5774590952e5d0d1c85c37e7a90009a51
Author: Matt Casters <[email protected]>
AuthorDate: Fri Jul 3 07:29:16 2026 +0200
issue #7412 : Dialog size not remembered in data preview window (#7413)
---
ui/src/main/java/org/apache/hop/ui/core/PropsUi.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ui/src/main/java/org/apache/hop/ui/core/PropsUi.java
b/ui/src/main/java/org/apache/hop/ui/core/PropsUi.java
index 839eb14349..d44f89d34a 100644
--- a/ui/src/main/java/org/apache/hop/ui/core/PropsUi.java
+++ b/ui/src/main/java/org/apache/hop/ui/core/PropsUi.java
@@ -509,7 +509,7 @@ public class PropsUi extends Props {
* @return true if dialog positions should reset on restart, false otherwise
*/
public boolean getResetDialogPositionsOnRestart() {
- return YES.equalsIgnoreCase(getProperty(RESET_DIALOG_POSITIONS_ON_RESTART,
YES));
+ return YES.equalsIgnoreCase(getProperty(RESET_DIALOG_POSITIONS_ON_RESTART,
NO));
}
/**