append-comment: use textbox instead of edit

newlines start new comments
"type it yourself" message has been removed
local variables have been remembered this time
This commit is contained in:
garret 2022-08-05 02:57:42 +01:00
parent 509d6e9518
commit c4ea5def11
1 changed files with 7 additions and 9 deletions

View File

@ -1,7 +1,7 @@
script_name = "Append Comment"
script_description = "{ts do all the work pls kthxbye}"
script_author = "garret"
script_version = "1.2.0"
script_version = "2.0.0"
script_namespace = "garret.append-comment"
local haveDepCtrl, DependencyControl, depctrl = pcall(require, "l0.DependencyControl")
@ -12,7 +12,7 @@ if haveDepCtrl then
end
local function main(sub, sel)
dialog_config=
local dialog_config=
{
{
class="label",
@ -20,19 +20,17 @@ local function main(sub, sel)
label="Comment:"
},
{
class="edit",name="msg",
x=0,y=1,width=3,height=2,
class="textbox",name="msg",
x=0,y=1,width=10,height=5,
value=""
}
}
if #sel == 1 then
table.insert(dialog_config, {class="label",x=0,y=3,width=1,height=1,label="if you're not using this for multiple lines \nyou may as well just type it out yourself"})
end
button, results = aegisub.dialog.display(dialog_config)
local button, results = aegisub.dialog.display(dialog_config)
if button ~= false then
for _, i in ipairs(sel) do
local line = sub[i]
line.text = line.text.." {"..results.msg.."}"
local msg = results.msg:gsub("\n", "}{")
line.text = line.text.." {"..msg.."}"
sub[i] = line
end
else