From 472fc5337dc41abc9545256720f3265f466f9b16 Mon Sep 17 00:00:00 2001 From: garret Date: Sat, 9 Oct 2021 15:20:50 +0100 Subject: add depctrl thing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit no feed yet, will get round to it eventuallyâ„¢ --- macros/append-comment.lua | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 macros/append-comment.lua (limited to 'macros/append-comment.lua') diff --git a/macros/append-comment.lua b/macros/append-comment.lua deleted file mode 100644 index 47d3feb..0000000 --- a/macros/append-comment.lua +++ /dev/null @@ -1,35 +0,0 @@ -script_name = "Append Comment" -script_description = "{ts do all the work pls kthxbye}" -script_author = "garret" -script_version = "1.1.2" - -function main(sub, sel) - dialog_config= - { - { - class="label", - x=0,y=0,width=1,height=1, - label="Comment:" - }, - { - class="edit",name="msg", - x=0,y=1,width=1,height=2, - 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) - if button ~= false then - for _, i in ipairs(sel) do - local line = sub[i] - line.text = line.text.." {"..results.msg.."}" - sub[i] = line - end - else - aegisub.cancel() - end -end - -aegisub.register_macro(script_name, script_description, main) -- cgit v1.2.3-70-g09d2