jeeeyul / eclipse-themes

Full Featured Eclipse Theme Customizer!
828 stars 121 forks source link

ToolBarCSSPropertyHandler can't play an effective role #235

Closed rensiu closed 9 years ago

rensiu commented 9 years ago

Why can't change text color of toolbar by use of jtool-item-color?

jeeeyul commented 9 years ago

That's SWT bug. see Eclipse bug 443156

I reported it and post fix for SWT/Cocoa. But nobody seems care this problem. Maybe it is too minor problem.

I used walk around that I could find, but it is not works for Windows 8.

rensiu commented 9 years ago

walk around for other Platforms(includes Win7 or below):

toolbar.setForeground(newColor);

for(ToolItem item : toolbar.getItems()){ String temp = item.getText(); item.setText(""); item.setText(temp); } That has no effect in win7.