From a6e2f856a2ae4831ba74673d309d8c303fd81f2c Mon Sep 17 00:00:00 2001 From: Zabooma Date: Wed, 6 Nov 2024 16:37:38 +0100 Subject: [PATCH] Update track_organizer lua script to use text-area for comments --- share/scripts/track_organizer.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/scripts/track_organizer.lua b/share/scripts/track_organizer.lua index 0ad516ed1f..5c0cf4d82e 100644 --- a/share/scripts/track_organizer.lua +++ b/share/scripts/track_organizer.lua @@ -56,7 +56,7 @@ function factory () return function () type = "dropdown", key = t:name() .. ' g', col = 1, colspan = 1, title = "", values = pl, default = interrogate(t) }) --group table.insert(dialog_options, { - type = "entry", key = t:name() .. ' cm', col = 2, colspan = 1, default = t:comment(), title = "" + type = "textarea", key = t:name() .. ' cm', col = 2, colspan = 1, default = t:comment(), title = "" }) --comment table.insert(dialog_options, { type = "dropdown", key = t:name() .. ' c', col = 3, colspan = 1, title = "", values = rbow, default = find_color(t)