You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hop.apache.org by ha...@apache.org on 2022/07/27 14:39:51 UTC

[hop] branch master updated: HOP-4068: switch background color for Group widget

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 75f9df3d7a HOP-4068: switch background color for Group widget
     new 2c62ab6e84 Merge pull request #1608 from hansva/master
75f9df3d7a is described below

commit 75f9df3d7ab55dfbf758e9a3da70223c2615417e
Author: Hans Van Akelyen <ha...@gmail.com>
AuthorDate: Tue Jul 26 09:43:03 2022 +0200

    HOP-4068: switch background color for Group widget
---
 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 ccc2c1f3a4..ff72317b98 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
@@ -483,7 +483,7 @@ public class PropsUi extends Props {
           control.addPaintListener(
               paintEvent -> {
                 paintEvent.gc.setForeground(gui.getColorBlack());
-                paintEvent.gc.setBackground(gui.getColorBackground());
+                paintEvent.gc.setBackground(gui.getColorWhite());
                 paintEvent.gc.fillRectangle(
                     2, 0, control.getBounds().width - 8, control.getBounds().height - 20);
               });