Skip to content

Commit b86d2ef

Browse files
committed
Issue #117: Fix the template table column colours in the new project wizard
1 parent 040aaa7 commit b86d2ef

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

dev/com.ibm.microclimate.ui/src/com/ibm/microclimate/ui/internal/wizards/NewMicroclimateProjectPage.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,8 @@ private void createItems(Table table, String filter) {
273273
String language = template.getLanguage();
274274
if (pattern.matches(type) || (language != null && pattern.matches(language))) {
275275
TableItem item = new TableItem(table, SWT.NONE);
276+
item.setForeground(table.getForeground());
277+
item.setBackground(table.getBackground());
276278
item.setText(0, type);
277279
if (language != null) {
278280
item.setText(1, language);

0 commit comments

Comments
 (0)