mirror of
https://github.com/jwetzell/QControlKit.git
synced 2026-08-07 00:13:51 +00:00
Fix? Cue initialization...some funky recursion stuff?
This commit is contained in:
+2
-2
@@ -148,14 +148,14 @@ namespace QSharp
|
||||
|
||||
protected virtual void OnCueListsUpdated(JToken response)
|
||||
{
|
||||
Console.WriteLine($"[client] Cue Lists Updated Changed");
|
||||
Console.WriteLine($"[client] Cue Lists Updated");
|
||||
if (CueListsUpdated != null)
|
||||
CueListsUpdated(this, new QCueListsUpdatedArgs { data = response });
|
||||
}
|
||||
|
||||
protected virtual void OnCueListChangedPlaybackPosition(string cueID)
|
||||
{
|
||||
Console.WriteLine($"[client] Playback Position changed: {cueID}");
|
||||
Console.WriteLine($"[client] Playback Position Changed: {cueID}");
|
||||
if (CueListChangedPlaybackPosition != null)
|
||||
CueListChangedPlaybackPosition(this, new QCueListChangedPlaybackPositionArgs { cueID = cueID });
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user