fix(coding-agent): sync extension theme changes to session settings (#1483)

This commit is contained in:
Fero 2026-02-23 00:57:36 +01:00 committed by GitHub
parent 34f841f036
commit 6137de9ce7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 51 additions and 0 deletions

View file

@ -1427,6 +1427,9 @@ export class InteractiveMode {
}
const result = setTheme(themeOrName, true);
if (result.success) {
if (this.settingsManager.getTheme() !== themeOrName) {
this.settingsManager.setTheme(themeOrName);
}
this.ui.requestRender();
}
return result;