diff options
author | garret <garret@airmail.cc> | 2021-09-07 19:46:51 +0100 |
---|---|---|
committer | garret <garret@airmail.cc> | 2021-09-07 19:46:51 +0100 |
commit | c3668ddbcbff4ff5556996c27252693f479f8b13 (patch) | |
tree | 4e0faee416da636d44e54e8de780dba3e4290632 /append-comment.lua | |
parent | f45a1597299c869c63dbb0c2a083c7f55383be99 (diff) | |
download | aegisub-scripts-c3668ddbcbff4ff5556996c27252693f479f8b13.tar.gz aegisub-scripts-c3668ddbcbff4ff5556996c27252693f479f8b13.tar.bz2 aegisub-scripts-c3668ddbcbff4ff5556996c27252693f479f8b13.zip |
add message
Diffstat (limited to 'append-comment.lua')
-rw-r--r-- | append-comment.lua | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/append-comment.lua b/append-comment.lua index d308444..47d3feb 100644 --- a/append-comment.lua +++ b/append-comment.lua @@ -1,7 +1,7 @@ script_name = "Append Comment" script_description = "{ts do all the work pls kthxbye}" script_author = "garret" -script_version = "1.1.1" +script_version = "1.1.2" function main(sub, sel) dialog_config= @@ -17,6 +17,9 @@ function main(sub, sel) 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 |