Skip to content

Commit 25b6da0

Browse files
committed
properly reset crop
1 parent a895e70 commit 25b6da0

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

scripts/vlcaspectratio.lua

+1
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ end
6969

7070
function cleanup()
7171
mp.msg.verbose("Cleanup")
72+
ar_option = 0
7273
mp.set_property("video-aspect-override", -1)
7374
return true
7475
end

scripts/vlccrop.lua

+4-1
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,11 @@ function on_press()
114114
command_prefix, cropstring, new_w, new_h, new_x, new_y))
115115
end
116116

117-
function cleanup() -- This looks for applied filters that match the filter that we are using, then removes them
117+
function cleanup()
118118
mp.msg.verbose("Cleanup")
119+
crop_option = 0 -- Reset crop option
120+
121+
-- This looks for applied filters that match the filter that we are using, then removes them
119122
local filters = mp.get_property_native("vf")
120123
for index, filter in pairs(filters) do
121124
mp.msg.verbose("Applied Crop : " .. tostring(filter["label"]))

0 commit comments

Comments
 (0)