holo: white nil variable fixed

This commit is contained in:
luke bonham 2014-03-04 09:54:19 +01:00
parent 4140985a58
commit 33cac791c0
2 changed files with 3 additions and 3 deletions

2
lain

@ -1 +1 @@
Subproject commit 3a118311d7375596f9660b0549ecbab7c1fa8aa2 Subproject commit 86b932b7c120c30e3ad2ce3838018f9e2942f729

View File

@ -141,7 +141,7 @@ mailwidget = lain.widgets.imap({
mail = "mail", mail = "mail",
password = "keyring get mail", password = "keyring get mail",
settings = function() settings = function()
mail_notification_preset.fg = white mail_notification_preset.fg = "#FFFFFF"
mail = "" mail = ""
count = "" count = ""
@ -150,7 +150,7 @@ mailwidget = lain.widgets.imap({
count = mailcount .. " " count = mailcount .. " "
end end
widget:set_markup(markup(blue, mail) .. markup(white, count)) widget:set_markup(markup(blue, mail) .. markup("#FFFFFF", count))
end end
}) })
]] ]]