fix(cosmic-theme): on reset of theme exports, do not remove VS code configs

Closes #1139
This commit is contained in:
Michael Aaron Murphy 2026-03-03 21:18:45 +01:00
parent bd1d3d5a73
commit 85c27a9960
No known key found for this signature in database
GPG key ID: B2732D4240C9212C

View file

@ -56,10 +56,8 @@ impl Theme {
pub fn reset_exports() -> Result<(), OutputError> {
let gtk_res = Theme::reset_gtk();
let qt_res = Theme::reset_qt();
let vs_res = Theme::reset_vs_code();
gtk_res?;
qt_res?;
vs_res?;
Ok(())
}
}