From 728fc297864d43602f906fe4ec7b7106654829db Mon Sep 17 00:00:00 2001 From: Umar Ahmad Date: Mon, 17 Feb 2025 17:04:57 +0530 Subject: [PATCH] Fix keyword arguments for `treemacs-define-variadic-entry-node-type` Fixes #825 --- dap-ui.el | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/dap-ui.el b/dap-ui.el index 2ebe77e2..fb5625dd 100644 --- a/dap-ui.el +++ b/dap-ui.el @@ -1172,12 +1172,8 @@ request." (treemacs-define-variadic-entry-node-type dap-loaded-sources :key 'DAP-Loaded-Sources - :label (propertize "DAP-Loaded-Sources" 'face 'font-lock-keyword-face) - :open-icon (dap-ui--calculate-sources-icon item t) - :closed-icon (dap-ui--calculate-sources-icon item nil) :children (dap-ui--loaded-sources-root) - :child-type 'dap-loaded-sources-node - :more-properties `(:pth ,item)) + :child-type 'dap-loaded-sources-node) (treemacs-define-expandable-node-type dap-loaded-sources-node :open-icon (dap-ui--calculate-sources-icon item t)