branch: externals/inspector commit 023ae9ca517ef67d0da2b4a5084aa9dc70e8af67 Author: Mariano Montone <marianomont...@gmail.com> Commit: Mariano Montone <marianomont...@gmail.com>
Use value face instead of button face --- inspector.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inspector.el b/inspector.el index 98bf1d9c00..f32416198d 100644 --- a/inspector.el +++ b/inspector.el @@ -180,7 +180,7 @@ END-COLUMN controls the truncation." (cl-defmethod inspector--face-for-object (object) "Use builtin face by default for non matching OBJECTs." (ignore object) - 'inspector-button-face) + 'inspector-value-face) (cl-defmethod inspector--face-for-object ((string string)) "Inspector face for STRING." @@ -208,7 +208,7 @@ Otherwise, button label is the printed representation of OBJECT." :type 'inspector-button 'face (if inspector-use-font-lock-faces (inspector--face-for-object object) - 'inspector-button-face) + 'inspector-value-face) 'action (lambda (_btn) (inspector-inspect object t)) 'follow-link t))