fix(awful: hotkeys): case when description is missing (+prettify)
This commit is contained in:
parent
3a9f7a1cee
commit
333c5cd31c
|
@ -265,9 +265,11 @@ local function create_wibox(s, available_groups)
|
||||||
length = length + string.len(modifiers) + 1 -- +1 for "+" character
|
length = length + string.len(modifiers) + 1 -- +1 for "+" character
|
||||||
modifiers = markup.fg(widget.modifiers_color, modifiers.."+")
|
modifiers = markup.fg(widget.modifiers_color, modifiers.."+")
|
||||||
end
|
end
|
||||||
local hotkey = modifiers .. (key.key or '')
|
local rendered_hotkey = markup.font(widget.title_font,
|
||||||
local rendered_hotkey = markup.font(widget.title_font, hotkey.." ") ..
|
modifiers .. (key.key or "") .. " "
|
||||||
(markup.font(widget.description_font, key.description) or "")
|
) .. markup.font(widget.description_font,
|
||||||
|
key.description or ""
|
||||||
|
)
|
||||||
if length > max_label_width then
|
if length > max_label_width then
|
||||||
max_label_width = length
|
max_label_width = length
|
||||||
max_label_content = rendered_hotkey
|
max_label_content = rendered_hotkey
|
||||||
|
|
Loading…
Reference in New Issue