[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[sc-dev] [commit] key down on server window



key down on server window:
n does a node query
space boots the server



_______
Index: ServerPlusGUI.sc
===================================================================
RCS file: /cvsroot/supercollider/SuperCollider3/build/SCClassLibrary/Common/GUI/PlusGUI/Control/ServerPlusGUI.sc,v
retrieving revision 1.7
diff -p -b -B -r1.7 ServerPlusGUI.sc
*** ServerPlusGUI.sc    18 Apr 2004 20:33:30 -0000      1.7
--- ServerPlusGUI.sc    24 Nov 2004 11:58:34 -0000
***************
*** 67,72 ****
--- 67,77 ----
                };
                recorder.enabled = false;

+               w.view.keyDownAction = { arg ascii, char;
+                       if(char === $n) { this.queryAllNodes };
+                       if(char === $ ) { this.boot };
+               };
+
                if (isLocal, {


--








.