Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/src/application.rs')
| -rw-r--r-- | helix-term/src/application.rs | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs index f3b8f49f..ae3b9392 100644 --- a/helix-term/src/application.rs +++ b/helix-term/src/application.rs @@ -496,13 +496,7 @@ impl Application { }) }) .unwrap_or_else(|| editor.theme_loader.default_theme(true_color)); - let background_color = theme - .try_get_exact("ui.background") - .and_then(|style| style.bg); - editor.set_theme(theme); - let _ = terminal - .backend_mut() - .set_background_color(background_color); + let _ = editor.set_theme(theme); } #[cfg(windows)] |