branch: externals/fontaine commit bb978caf1fd91aaa278fe10c70d7fb97a64dacee Author: Protesilaos Stavrou <i...@protesilaos.com> Commit: Protesilaos Stavrou <i...@protesilaos.com>
Add informative :tag to weight selection widget --- fontaine.el | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/fontaine.el b/fontaine.el index 100b8544b2..0f7e155975 100644 --- a/fontaine.el +++ b/fontaine.el @@ -122,19 +122,19 @@ :group 'font) (defconst fontaine--weights-widget - '(choice - (const :tag "Normal" normal) - (const :tag "Regular (same as normal)" regular) - (const :tag "Thin" thin) - (const :tag "Ultra-light" ultralight) - (const :tag "Extra-light" extralight) - (const :tag "Light" light) - (const :tag "Semi-light" semilight) - (const :tag "Medium" medium) - (const :tag "Semi-bold" semibold) - (const :tag "Bold" bold) - (const :tag "Extra-bold" extrabold) - (const :tag "Ultra-bold" ultrabold)) + '(choice :tag "Font weight (must be supported by the typeface)" + (const :tag "Normal" normal) + (const :tag "Regular (same as normal)" regular) + (const :tag "Thin" thin) + (const :tag "Ultra-light" ultralight) + (const :tag "Extra-light" extralight) + (const :tag "Light" light) + (const :tag "Semi-light" semilight) + (const :tag "Medium" medium) + (const :tag "Semi-bold" semibold) + (const :tag "Bold" bold) + (const :tag "Extra-bold" extrabold) + (const :tag "Ultra-bold" ultrabold)) "Widget with font weights for `fontaine-presets'.") (defcustom fontaine-presets