Hi,
using the eclipse theme, only the titleicon of the selected tab of some tabbed dockables will be shown. The icons of the unselected tabs are hidden.
Is it possible to somehow change this behaviour?
Thanks!
Raphi
Hi,
using the eclipse theme, only the titleicon of the selected tab of some tabbed dockables will be shown. The icons of the unselected tabs are hidden.
Is it possible to somehow change this behaviour?
Thanks!
Raphi
The property key “EclipseTheme.PAINT_ICONS_WHEN_DESELECTED” is responsible for this behavior.
Assuming you use Common you can change the behavior like this:
control.putProperty( EclipseTheme.PAINT_ICONS_WHEN_DESELECTED, true );```
If using Core, call DockController.getProperties to get a map where you can change the property.
Works like a charm!
Thanks again for the excellent support!
Raphi