Skip to content

Commit

Permalink
Video wallpaper border issue fix
Browse files Browse the repository at this point in the history
Resolved: #2415
  • Loading branch information
rocksdanister committed Jan 5, 2025
1 parent f007584 commit 7cc4116
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Lively/Lively/Core/Wallpapers/VideoMpvPlayer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,8 @@ public VideoMpvPlayer(string path,
cmdArgs.Append("--stop-screensaver=no ");
//disable mpv default (built-in) key bindings
cmdArgs.Append("--input-default-bindings=no ");
// Win11 24H2 and new mpv builds alignment fix, ref: https://github.com/rocksdanister/lively/issues/2415
cmdArgs.Append(!onScreenControl ? "--no-border " : " ");
//Permit mpv to receive pointer events reported by the video output driver. Necessary to use the OSC, or to select the buttons in DVD menus.
cmdArgs.Append(!onScreenControl ? "--input-cursor=no " : " ");
//on-screen-controller visibility
Expand Down

0 comments on commit 7cc4116

Please sign in to comment.