From 423439b38067c4a428310edab24fba7da082027c Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Wed, 14 Oct 2020 21:52:57 +0200 Subject: [PATCH] Fix layout of custom-face-edit widget * lisp/cus-edit.el (custom-face-edit): Add :format to group widget. (Bug#43977) --- lisp/cus-edit.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el index 3c937534958..510c6e3b4c4 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el @@ -3205,6 +3205,7 @@ face attributes (as specified by a `default' defface entry)." :convert-widget 'custom-face-edit-convert-widget :args (mapcar (lambda (att) (list 'group :inline t + :format "%v" :sibling-args (widget-get (nth 1 att) :sibling-args) (list 'const :format "" :value (nth 0 att)) (nth 1 att))) -- 2.39.5