From 251c7ffab37e79260c6547b44ae40ec6c9a7e75e Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Wed, 10 Jun 2020 13:24:18 -0500 Subject: [PATCH] Add missing method and fix recursive printing. --- QSharp/QCue.cs | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/QSharp/QCue.cs b/QSharp/QCue.cs index d50e933..4bb91cd 100644 --- a/QSharp/QCue.cs +++ b/QSharp/QCue.cs @@ -642,6 +642,15 @@ namespace QSharp #endregion + //TODO + public void sendAllPropertiesToQLab() { } + + //TODO + public void pullDownPropertyForKey(string key) { } + + //TODO + public void setPlaybackPositionID(string cueID, bool osc) { } + //Methods Copied: Yes //Methods Implemented: Yes #region Actions @@ -661,11 +670,11 @@ namespace QSharp #region Printing public void Print() { - if (IsCueList) + if (IsGroup) { - if(cues != null && cues.Count() > 0) + Console.WriteLine($"{displayName} : {color}"); + if (cues.Count() > 0) { - Console.WriteLine(displayName); foreach(var cue in cues) { cue.Print();