mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-07 16:17:53 +03:00
Fixed name issue
This commit is contained in:
parent
7efeb0662a
commit
0450380e97
@ -146,7 +146,7 @@ pub enum WorkingDirectory {
|
||||
#[derive(Clone, Debug, Default, Deserialize, JsonSchema)]
|
||||
pub struct SettingsFileContent {
|
||||
#[serde(default)]
|
||||
pub nightly: Option<FeatureFlags>,
|
||||
pub experiments: Option<FeatureFlags>,
|
||||
#[serde(default)]
|
||||
pub projects_online_by_default: Option<bool>,
|
||||
#[serde(default)]
|
||||
@ -256,7 +256,7 @@ impl Settings {
|
||||
);
|
||||
merge(&mut self.vim_mode, data.vim_mode);
|
||||
merge(&mut self.autosave, data.autosave);
|
||||
merge(&mut self.experiments, data.nightly);
|
||||
merge(&mut self.experiments, data.experiments);
|
||||
// Ensure terminal font is loaded, so we can request it in terminal_element layout
|
||||
if let Some(terminal_font) = &data.terminal.font_family {
|
||||
font_cache.load_family(&[terminal_font]).log_err();
|
||||
|
Loading…
Reference in New Issue
Block a user