From 5c27ab60130dd7fab6e919aa815f952a89906995 Mon Sep 17 00:00:00 2001 From: Maik Wild Date: Sat, 30 Sep 2017 14:07:41 +0200 Subject: [PATCH] Changed tasklist author to gray --- tasklist.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tasklist.lua b/tasklist.lua index fea013a1..476f55bb 100644 --- a/tasklist.lua +++ b/tasklist.lua @@ -51,12 +51,13 @@ local function tasklist_show(player) end if global.tasklist_author ~= nil then - tasklist_panel_table.add { type = "label", caption = "-- updated by: " .. global.tasklist_author, single_line = false, name = "tasklist_author"} + tasklist_panel_table.add { type = "label", caption = "Updated by: " .. global.tasklist_author, single_line = false, name = "tasklist_author"} local tasklist_label = tasklist_panel_table["tasklist_author"] tasklist_label.style.maximal_width = 208 tasklist_label.style.minimal_width = 208 tasklist_label.style.maximal_height = 165 tasklist_label.style.font = "default" + tasklist_label.style.font_color = {r = 0.55, g = 0.55, b = 0.55} end frame.add { type = "table", name = "tasklist_panel_button_table", colspan = 3 }