13
0

Update track_organizer lua script to use text-area for comments

This commit is contained in:
Zabooma 2024-11-06 16:37:38 +01:00 committed by Robin Gareus
parent 1155da84dd
commit a6e2f856a2
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -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)