From d7e460a3d64e0ba0d5071ce99342b7a276993c77 Mon Sep 17 00:00:00 2001 From: Tw Date: Tue, 30 Nov 2021 16:46:48 +0800 Subject: [PATCH] Fix: missing theme in config (#913) Signed-off-by: Tw --- zellij-utils/src/input/config.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/zellij-utils/src/input/config.rs b/zellij-utils/src/input/config.rs index 4c3765a2..bc2efb86 100644 --- a/zellij-utils/src/input/config.rs +++ b/zellij-utils/src/input/config.rs @@ -155,11 +155,10 @@ impl Config { /// Merges two Config structs into one Config struct /// `other` overrides `self`. pub fn merge(&self, other: Self) -> Self { - //let themes = if let Some() Self { keybinds: self.keybinds.merge_keybinds(other.keybinds), options: self.options.merge(other.options), - themes: None, + themes: self.themes.clone(), // TODO plugins: self.plugins.merge(other.plugins), } }