From 3dff31e3c82d759d10beab9fde3ed222091fee58 Mon Sep 17 00:00:00 2001 From: Ben Kunkle Date: Mon, 16 Jun 2025 15:08:33 +0200 Subject: [PATCH] change background to editor background --- crates/settings_ui/src/keybindings.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/settings_ui/src/keybindings.rs b/crates/settings_ui/src/keybindings.rs index 6f9f7544044434d5486ca138a5e1ad677f493b7b..93c9828a59053c44b763b14627a3b8a7421352b2 100644 --- a/crates/settings_ui/src/keybindings.rs +++ b/crates/settings_ui/src/keybindings.rs @@ -341,7 +341,7 @@ impl Render for KeymapEditor { .on_action(cx.listener(Self::select_last)) .on_action(cx.listener(Self::focus_search)) .size_full() - .bg(theme.colors().background) + .bg(theme.colors().editor_background) .id("keymap-editor") .track_focus(&self.focus_handle) .px_4()