aboutsummaryrefslogtreecommitdiffstats
path: root/macros
diff options
context:
space:
mode:
authorgarret <garret@airmail.cc>2022-12-22 18:13:02 +0000
committergarret <garret@airmail.cc>2022-12-22 19:04:13 +0000
commitdcdbacb94ef6fc1205e32e3fa411be3833f41d5d (patch)
treef8705fc985c59e37b9fe85fd9948f42de909adf7 /macros
parentb7f76f4caf31ef238ebbc1599c992387a841af31 (diff)
downloadaegisub-scripts-dcdbacb94ef6fc1205e32e3fa411be3833f41d5d.tar.gz
aegisub-scripts-dcdbacb94ef6fc1205e32e3fa411be3833f41d5d.tar.bz2
aegisub-scripts-dcdbacb94ef6fc1205e32e3fa411be3833f41d5d.zip
A-B: make it so inline tags are applied to the indicator
Diffstat (limited to 'macros')
-rw-r--r--macros/garret.a-b.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/macros/garret.a-b.lua b/macros/garret.a-b.lua
index dea2bcb..9b0277f 100644
--- a/macros/garret.a-b.lua
+++ b/macros/garret.a-b.lua
@@ -1,7 +1,7 @@
script_name = "A-B"
script_description = "makes checking pre-timing possible."
script_author = "garret"
-script_version = "2.1.1"
+script_version = "3.0.0"
script_namespace = "garret.a-b"
local haveDepCtrl, DependencyControl, depctrl = pcall(require, "l0.DependencyControl")
@@ -31,7 +31,7 @@ function main(sub, sel)
if line.text == "" then
line.text = indicator
elseif line.text:gsub("{[^}]-}","") == "" then
- line.text = indicator.." "..line.text
+ line.text = line.text .. indicator -- apply tags
end
sub[li] = line
i = switch_number(i)