From fe7c9709587f03e47865e3ebffbe120996629931 Mon Sep 17 00:00:00 2001 From: derailed Date: Thu, 23 Nov 2023 08:54:28 -0700 Subject: [PATCH] Fix #2297: Enable multi select on nodes --- internal/view/node.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/internal/view/node.go b/internal/view/node.go index 82e9d33f80..9b9274b717 100644 --- a/internal/view/node.go +++ b/internal/view/node.go @@ -54,8 +54,6 @@ func (n *Node) bindDangerousKeys(aa ui.KeyActions) { } func (n *Node) bindKeys(aa ui.KeyActions) { - aa.Delete(ui.KeySpace, tcell.KeyCtrlSpace) - if !n.App().Config.K9s.IsReadOnly() { n.bindDangerousKeys(aa) }