diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2020-10-14 21:52:57 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2020-10-14 21:59:38 +0200 |
commit | 423439b38067c4a428310edab24fba7da082027c (patch) | |
tree | ade3d272d9e5e08c4b9fc439bf4a7afe7d767782 | |
parent | 4bf9bb56b56b4acacd5d9430a19db32291bd078b (diff) | |
download | emacs-423439b38067c4a428310edab24fba7da082027c.tar.gz emacs-423439b38067c4a428310edab24fba7da082027c.tar.bz2 emacs-423439b38067c4a428310edab24fba7da082027c.zip |
Fix layout of custom-face-edit widget
* lisp/cus-edit.el (custom-face-edit): Add :format to group
widget. (Bug#43977)
-rw-r--r-- | lisp/cus-edit.el | 1 |
1 files changed, 1 insertions, 0 deletions
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))) |