Author: adietish
Date: 2012-01-31 06:17:53 -0500 (Tue, 31 Jan 2012)
New Revision: 38321
Modified:
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/propertytable/PropertyValueCellLabelProvider.java
Log:
[JBIDE-10747] tried fixing with transparent background
Modified:
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/propertytable/PropertyValueCellLabelProvider.java
===================================================================
---
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/propertytable/PropertyValueCellLabelProvider.java 2012-01-31
11:04:19 UTC (rev 38320)
+++
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/propertytable/PropertyValueCellLabelProvider.java 2012-01-31
11:17:53 UTC (rev 38321)
@@ -41,9 +41,10 @@
}
protected void createLink(IProperty property, final ViewerCell cell) {
- final Hyperlink link = new Hyperlink((Tree) cell.getControl(), SWT.TRANSPARENT);
+ final Hyperlink link = new Hyperlink((Tree) cell.getControl(),SWT.NONE);
//SWT.NO_BACKGROUND
link.setBackground(cell.getBackground());
link.setForeground(JFaceResources.getColorRegistry().get(JFacePreferences.ACTIVE_HYPERLINK_COLOR));
+ link.setFont(cell.getFont());
link.setUnderlined(true);
link.setText(property.getValue());
link.setBackground(cell.getBackground());
Show replies by date