Skip to content

Commit 91de7db

Browse files
committed
A few random updates
1 parent a1f4125 commit 91de7db

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

audio-balance.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,8 @@ end
167167
mp.register_script_message(mp.get_script_name(), change_balance)
168168

169169
-- shift+9 and shift+0 in Portuguese layout
170-
mp.add_key_binding(")", 'balance-to-left', function() change_balance(-0.1); end, { repeatable = true })
171-
mp.add_key_binding("=", 'balance-to-right', function() change_balance(0.1); end, { repeatable = true })
170+
mp.add_key_binding(")", 'balance-to-left', function() change_balance(-0.05); end, { repeatable = true })
171+
mp.add_key_binding("=", 'balance-to-right', function() change_balance(0.05); end, { repeatable = true })
172172

173173
mp.add_key_binding("?", 'balance-reset', function()
174174
mp.command('no-osd af del @balance')

excerpt.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ local function excerpt_write_handler()
222222
table.insert(t.args, '--edition=' .. mp.get_property('edition'))
223223
end
224224
props = {'vid', 'aid', 'sid', 'mute', 'sub-visibility',
225-
'sub-ass-style-override', 'audio-delay', 'sub-delay'}
225+
'sub-ass-override', 'audio-delay', 'sub-delay'}
226226
for _, i in pairs(props) do
227227
table.insert(t.args, '--'..i..'='..mp.get_property(i))
228228
end

subit.lua

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ o = {
3030
addic7ed = "",
3131
legendastv = "",
3232
opensubtitles = "",
33-
subscenter = ""
3433
}
3534
options.read_options(o)
3635

0 commit comments

Comments
 (0)