Revision: 7516
http://svn.sourceforge.net/supercollider/?rev=7516&view=revAuthor: cruxxial
Date: 2008-04-14 12:52:23 -0700 (Mon, 14 Apr 2008)
Log Message:
-----------
minor
Modified Paths:
--------------
trunk/build/SCClassLibrary/crucial/Sample/SampleGui.sc
trunk/build/SCClassLibrary/crucial/ServerTools/ServerGui.sc
Modified: trunk/build/SCClassLibrary/crucial/Sample/SampleGui.sc
===================================================================
--- trunk/build/SCClassLibrary/crucial/Sample/SampleGui.sc 2008-04-14 19:51:42 UTC (rev 7515)
+++ trunk/build/SCClassLibrary/crucial/Sample/SampleGui.sc 2008-04-14 19:52:23 UTC (rev 7516)
@@ -76,6 +76,7 @@
layout.startRow;
CXLabel(layout,"Resolution:");
+ block = max(1,(model.numFrames / 44100).asInteger);
GUI.numberBox.new(layout, Rect(0, 0, 30, 18)).value_(block)
.action_({|numbox|
numbox.value = max(numbox.value,1);
Modified: trunk/build/SCClassLibrary/crucial/ServerTools/ServerGui.sc
===================================================================
--- trunk/build/SCClassLibrary/crucial/ServerTools/ServerGui.sc 2008-04-14 19:51:42 UTC (rev 7515)
+++ trunk/build/SCClassLibrary/crucial/ServerTools/ServerGui.sc 2008-04-14 19:52:23 UTC (rev 7516)
@@ -123,7 +123,10 @@
failer = OSCresponderNode(model.addr, '/fail', { arg time, responder, msg;
{
- errors.label = msg[1].asString + msg[2].asString + "(" ++ time.asTimeString++")";
+ // band-aid the window close is not always removing
+ if(errors.isClosed,{ this.remove },{
+ errors.label = msg[1].asString + msg[2].asString + "(" ++ time.asTimeString++")";
+ });
//errors.stringColor = Color.white;
}.defer
});
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
_______________________________________________
sc-dev mailing list
sc-dev@...
http://lists.create.ucsb.edu/mailman/listinfo/sc-dev