theme_importer: Read theme name from VS Code theme (#7489)
apply theme_name(fallback use "") Release Notes: - N/A
This commit is contained in:
parent
ad3940c66f
commit
c7b022144f
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ fn main() -> Result<()> {
|
|||
.context(format!("failed to parse theme {theme_file_path:?}"))?;
|
||||
|
||||
let theme_metadata = ThemeMetadata {
|
||||
name: "".to_string(),
|
||||
name: vscode_theme.name.clone().unwrap_or("".to_string()),
|
||||
appearance: ThemeAppearanceJson::Dark,
|
||||
file_name: "".to_string(),
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue