nadment commented on code in PR #6284:
URL: https://github.com/apache/hop/pull/6284#discussion_r2656370408


##########
ui/src/main/java/org/apache/hop/ui/hopgui/perspective/configuration/ConfigurationPerspective.java:
##########
@@ -95,18 +125,133 @@ public void initialize(HopGui hopGui, Composite parent) {
     this.hopGui = hopGui;
 
     composite = new Composite(parent, SWT.NONE);
-    composite.setLayout(new FillLayout());
     PropsUi.setLook(composite);
+    FormLayout formLayout = new FormLayout();
+    formLayout.marginWidth = 0;
+    formLayout.marginHeight = 0;
+    composite.setLayout(formLayout);
 
-    configTabs = new CTabFolder(composite, SWT.BORDER);
+    // Create a neutral highlight color (light blue-gray)
+    highlightColor = GuiResource.getInstance().getColorLightBlue();
+
+    // Dispose color when composite is disposed

Review Comment:
   I don't understand why you dispose color from GuiResource when composite is 
disposed in PR for 6276



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to