mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
Update track_organizer lua script to use text-area for comments
This commit is contained in:
parent
1155da84dd
commit
a6e2f856a2
1 changed files with 1 additions and 1 deletions
|
|
@ -56,7 +56,7 @@ function factory () return function ()
|
||||||
type = "dropdown", key = t:name() .. ' g', col = 1, colspan = 1, title = "", values = pl, default = interrogate(t)
|
type = "dropdown", key = t:name() .. ' g', col = 1, colspan = 1, title = "", values = pl, default = interrogate(t)
|
||||||
}) --group
|
}) --group
|
||||||
table.insert(dialog_options, {
|
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
|
}) --comment
|
||||||
table.insert(dialog_options, {
|
table.insert(dialog_options, {
|
||||||
type = "dropdown", key = t:name() .. ' c', col = 3, colspan = 1, title = "", values = rbow, default = find_color(t)
|
type = "dropdown", key = t:name() .. ' c', col = 3, colspan = 1, title = "", values = rbow, default = find_color(t)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue