TreeIcon Defaults to None #10985
-
Hi,
But, this isn't being picked up by Eclipse Che. Is there anyother way to make it work or Am I missing something ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @maheshrajrp, managing the default themes (icons/colors) is not done using the preferences but purely through the config: "theia": {
"frontend": {
"config": {
"applicationName": "Custom Theia",
"defaultIconTheme": "theia-file-icons",
"defaultTheme": "light"
}
}
},
I'm not too sure about that. With the most recent Theia update, we heavily improved the handling of contributed default icon themes. Using |
Beta Was this translation helpful? Give feedback.
Hi @maheshrajrp,
managing the default themes (icons/colors) is not done using the preferences but purely through the config:
I'm not too sure about that. With the most recent Theia update, we heavily improved the handling of contributed default icon themes. Using
none
as the default encourages downstream apps to employ their own icon themes (like the VSCodeseti
theme), instead of relying on Theia'stheia-file-icon
theme. Still, I will…