From a9452dc818cfa55a113302c0ea0ec8ebf3991b40 Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Wed, 28 Oct 2009 08:43:02 +0000
Subject: [PATCH] Fix the opacity in the review panel of the setup.
---
opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/installer/ui/InstallReviewPanel.java | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/installer/ui/InstallReviewPanel.java b/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/installer/ui/InstallReviewPanel.java
index b6217e6..734cca7 100644
--- a/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/installer/ui/InstallReviewPanel.java
+++ b/opendj-sdk/opends/src/quicksetup/org/opends/quicksetup/installer/ui/InstallReviewPanel.java
@@ -22,7 +22,7 @@
* CDDL HEADER END
*
*
- * Copyright 2006-2008 Sun Microsystems, Inc.
+ * Copyright 2006-2009 Sun Microsystems, Inc.
*/
package org.opends.quicksetup.installer.ui;
@@ -518,9 +518,11 @@
if (bottomComponent == null)
{
bottomComponent = new JPanel(new GridBagLayout());
+ bottomComponent.setOpaque(false);
GridBagConstraints gbc = new GridBagConstraints();
gbc.anchor = GridBagConstraints.WEST;
JPanel auxPanel = new JPanel(new GridBagLayout());
+ auxPanel.setOpaque(false);
gbc.gridwidth = 3;
auxPanel.add(getStartCheckBox(), gbc);
gbc.insets.left = UIFactory.LEFT_INSET_SECONDARY_FIELD;
--
Gitblit v1.10.0