Front View plug-in does not init if no sensor added.
Fixing some format to make strings shorter.
Now trying to start SoundGraphAccess.exe process from same directory.
Packed mode now can display three sensors along with the current time.
2 using System.Collections.Generic;
5 namespace Aga.Controls.Tree
7 public struct DropPosition
9 private TreeNodeAdv _node;
10 public TreeNodeAdv Node
13 set { _node = value; }
16 private NodePosition _position;
17 public NodePosition Position
19 get { return _position; }
20 set { _position = value; }