From 6c9b61b76fca80519fa5cc1bdfdaafb0530e8604 Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Fri, 16 Jan 2026 18:56:06 +0800 Subject: [PATCH] Fix loop toggle resuming paused video playback (#1861) --- .../QuickLook.Plugin.VideoViewer/ViewerPanel.xaml.cs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/QuickLook.Plugin/QuickLook.Plugin.VideoViewer/ViewerPanel.xaml.cs b/QuickLook.Plugin/QuickLook.Plugin.VideoViewer/ViewerPanel.xaml.cs index 1bfbdcc..f7d117f 100644 --- a/QuickLook.Plugin/QuickLook.Plugin.VideoViewer/ViewerPanel.xaml.cs +++ b/QuickLook.Plugin/QuickLook.Plugin.VideoViewer/ViewerPanel.xaml.cs @@ -130,12 +130,6 @@ public partial class ViewerPanel : UserControl, IDisposable, INotifyPropertyChan if (value == _shouldLoop) return; _shouldLoop = value; OnPropertyChanged(); - if (!IsPlaying) - { - IsPlaying = true; - - mediaElement.Play(); - } } }