mirror of
https://github.com/jwetzell/QControlKit.git
synced 2026-09-09 08:19:13 +00:00
Add missing method and fix recursive printing.
This commit is contained in:
+12
-3
@@ -642,6 +642,15 @@ namespace QSharp
|
|||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
//TODO
|
||||||
|
public void sendAllPropertiesToQLab() { }
|
||||||
|
|
||||||
|
//TODO
|
||||||
|
public void pullDownPropertyForKey(string key) { }
|
||||||
|
|
||||||
|
//TODO
|
||||||
|
public void setPlaybackPositionID(string cueID, bool osc) { }
|
||||||
|
|
||||||
//Methods Copied: Yes
|
//Methods Copied: Yes
|
||||||
//Methods Implemented: Yes
|
//Methods Implemented: Yes
|
||||||
#region Actions
|
#region Actions
|
||||||
@@ -661,11 +670,11 @@ namespace QSharp
|
|||||||
#region Printing
|
#region Printing
|
||||||
public void Print()
|
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)
|
foreach(var cue in cues)
|
||||||
{
|
{
|
||||||
cue.Print();
|
cue.Print();
|
||||||
|
|||||||
Reference in New Issue
Block a user