diff --git a/org.eclipse.wb.core/src/org/eclipse/wb/internal/core/editor/errors/ExceptionComposite.java b/org.eclipse.wb.core/src/org/eclipse/wb/internal/core/editor/errors/ExceptionComposite.java index 56975bc38..393afc96d 100644 --- a/org.eclipse.wb.core/src/org/eclipse/wb/internal/core/editor/errors/ExceptionComposite.java +++ b/org.eclipse.wb.core/src/org/eclipse/wb/internal/core/editor/errors/ExceptionComposite.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, 2023 Google, Inc. + * Copyright (c) 2011, 2025 Google, Inc. and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License 2.0 which is available at @@ -64,7 +64,7 @@ public ExceptionComposite(Composite parent, int style) { wbBasic = InstanceScope.INSTANCE.getNode( IEditorPreferenceConstants.WB_BASIC_UI_PREFERENCE_NODE).getBoolean( IEditorPreferenceConstants.WB_BASIC_UI, - true); + false); // create GUI elements GridLayoutFactory.create(this); { diff --git a/org.eclipse.wb.core/src/org/eclipse/wb/internal/core/editor/errors/WarningComposite.java b/org.eclipse.wb.core/src/org/eclipse/wb/internal/core/editor/errors/WarningComposite.java index 999fc49be..b4d453d0c 100644 --- a/org.eclipse.wb.core/src/org/eclipse/wb/internal/core/editor/errors/WarningComposite.java +++ b/org.eclipse.wb.core/src/org/eclipse/wb/internal/core/editor/errors/WarningComposite.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011, 2023 Google, Inc. + * Copyright (c) 2011, 2025 Google, Inc. and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License 2.0 which is available at @@ -57,7 +57,7 @@ public WarningComposite(Composite parent, int style) { wbBasic = InstanceScope.INSTANCE.getNode( IEditorPreferenceConstants.WB_BASIC_UI_PREFERENCE_NODE).getBoolean( IEditorPreferenceConstants.WB_BASIC_UI, - true); + false); GridLayoutFactory.create(this); { Composite titleComposite = new Composite(this, SWT.NONE);