diff options
author | garret <garret@airmail.cc> | 2021-07-24 23:20:18 +0100 |
---|---|---|
committer | garret <garret@airmail.cc> | 2021-07-24 23:20:18 +0100 |
commit | a69f8996eff102eb00726d7a5bd31278c048e557 (patch) | |
tree | 2e55f3355fad3760d4b1f6ba357bf321191974a1 | |
parent | d5eb7c02fe0fc9998d6dbb651f5069d6f33e4bed (diff) | |
download | aegisub-scripts-a69f8996eff102eb00726d7a5bd31278c048e557.tar.gz aegisub-scripts-a69f8996eff102eb00726d7a5bd31278c048e557.tar.bz2 aegisub-scripts-a69f8996eff102eb00726d7a5bd31278c048e557.zip |
normal edit would be better i think
prevents newline fuckery
-rw-r--r-- | append-comment.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/append-comment.lua b/append-comment.lua index 9f62ed2..d6a7715 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_description = "{ts do all the work pls kthxbye}" script_author = "garret" -script_version = "1.0.0" +script_version = "1.1.0" inspect = require 'inspect' function log(level, msg) @@ -28,7 +28,7 @@ function main(sub, sel) label="Comment:" }, { - class="textbox",name="msg", + class="edit",name="msg", x=0,y=1,width=1,height=2, value="" } |