File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ function should_remove(filename)
4646 return false
4747 end
4848 local extension = string.match (filename , " %.([^./]+)$" )
49- if not extension and opts .remove_file_without_extension then
49+ if not extension and opts .remove_files_without_extension then
5050 return true
5151 end
5252 if extension and exclude (string.lower (extension )) then
@@ -69,7 +69,7 @@ function process(playlist_count)
6969 end
7070 end
7171 if removed == # playlist then
72- msg .warn (" Removed eveything from the playlist" )
72+ msg .warn (" Removed everything from the playlist" )
7373 end
7474end
7575
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ function set_blur()
3838 if applied then return end
3939 if not mp .get_property (" video-out-params" ) then return end
4040 if opts .only_fullscreen and not mp .get_property_bool (" fullscreen" ) then return end
41- local video_aspect = mp .get_property_number (" video-aspect" )
41+ local video_aspect = mp .get_property_number (" video-aspect-override " )
4242 local ww , wh = mp .get_osd_size ()
4343
4444 if math.abs (ww / wh - video_aspect ) < 0.05 then return end
You can’t perform that action at this time.
0 commit comments