diff options
author | garret <garret@airmail.cc> | 2025-03-11 17:12:37 +0000 |
---|---|---|
committer | garret <garret@airmail.cc> | 2025-03-11 17:12:37 +0000 |
commit | 1f485f58a07b191db2983ebb9556b796e442e440 (patch) | |
tree | e8521ed9f5d98a1278940d075f525fdf0e4777b3 | |
parent | 0250b20043022429cf4c0b6d7233ee7f6eada999 (diff) | |
download | aegisub-scripts-1f485f58a07b191db2983ebb9556b796e442e440.tar.gz aegisub-scripts-1f485f58a07b191db2983ebb9556b796e442e440.tar.bz2 aegisub-scripts-1f485f58a07b191db2983ebb9556b796e442e440.zip |
restyler: fix wrong variable name
-rw-r--r-- | restyler.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/restyler.lua b/restyler.lua index 782d7c3..38aa031 100644 --- a/restyler.lua +++ b/restyler.lua @@ -25,7 +25,7 @@ realisticly this _probably_ won't be a problem, but still would like to try and italics is fine, it just does {\i1\i0}, which is jank and bad but works fine so i won't worry about it too much]] if italic == true then txt="{\\i1}"..txt - elseif italics == false then + elseif italic == false then txt="{\\i0}"..txt end if align ~= nil then |