Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion LLin.OSIntegrations/Windows/WindowsMediaIntegration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@

public bool AllowExternalControl
{
set => smtc.IsEnabled = value;
// set => smtc.IsEnabled = value;
get; set;
}

//endregion Controls
Expand Down Expand Up @@ -202,16 +203,16 @@

//region Controls

public event Action? Next;

Check warning on line 206 in LLin.OSIntegrations/Windows/WindowsMediaIntegration.cs

View workflow job for this annotation

GitHub Actions / Build (8.0.x)

The event 'WindowsMediaIntegration.Next' is never used
public event Action? Previous;

Check warning on line 207 in LLin.OSIntegrations/Windows/WindowsMediaIntegration.cs

View workflow job for this annotation

GitHub Actions / Build (8.0.x)

The event 'WindowsMediaIntegration.Previous' is never used
public event Action? Pause;

Check warning on line 208 in LLin.OSIntegrations/Windows/WindowsMediaIntegration.cs

View workflow job for this annotation

GitHub Actions / Build (8.0.x)

The event 'WindowsMediaIntegration.Pause' is never used
public event Action? Stop;
public event Action? Play;

Check warning on line 210 in LLin.OSIntegrations/Windows/WindowsMediaIntegration.cs

View workflow job for this annotation

GitHub Actions / Build (8.0.x)

The event 'WindowsMediaIntegration.Play' is never used
public event Action? TogglePause;

Check warning on line 211 in LLin.OSIntegrations/Windows/WindowsMediaIntegration.cs

View workflow job for this annotation

GitHub Actions / Build (8.0.x)

The event 'WindowsMediaIntegration.TogglePause' is never used

Check warning on line 211 in LLin.OSIntegrations/Windows/WindowsMediaIntegration.cs

View workflow job for this annotation

GitHub Actions / Build (8.0.x)

The event 'WindowsMediaIntegration.TogglePause' is never used

public event Action<bool>? ShuffleChanged;

Check warning on line 213 in LLin.OSIntegrations/Windows/WindowsMediaIntegration.cs

View workflow job for this annotation

GitHub Actions / Build (8.0.x)

The event 'WindowsMediaIntegration.ShuffleChanged' is never used

Check warning on line 213 in LLin.OSIntegrations/Windows/WindowsMediaIntegration.cs

View workflow job for this annotation

GitHub Actions / Build (8.0.x)

The event 'WindowsMediaIntegration.ShuffleChanged' is never used

public event Action<long>? Seek;

Check warning on line 215 in LLin.OSIntegrations/Windows/WindowsMediaIntegration.cs

View workflow job for this annotation

GitHub Actions / Build (8.0.x)

The event 'WindowsMediaIntegration.Seek' is never used
public event Action<long>? SetPosition;
public event Action<string>? OpenUri;

Check warning on line 217 in LLin.OSIntegrations/Windows/WindowsMediaIntegration.cs

View workflow job for this annotation

GitHub Actions / Build (8.0.x)

The event 'WindowsMediaIntegration.OpenUri' is never used
}
Loading