Author: alanmc
Date: 2007-08-08 17:13:34 -0400 (Wed, 08 Aug 2007)
New Revision: 83692

Modified:
   trunk/lunareclipse/ChangeLog
   trunk/lunareclipse/View/MainWindow.cs
Log:
* View/MainWindow.cs: 'Start' button is unneccessary

Modified: trunk/lunareclipse/ChangeLog
===================================================================
--- trunk/lunareclipse/ChangeLog        2007-08-08 21:07:43 UTC (rev 83691)
+++ trunk/lunareclipse/ChangeLog        2007-08-08 21:13:34 UTC (rev 83692)
@@ -1,5 +1,9 @@
 2007-08-08  Alan McGovern <[EMAIL PROTECTED]> 
 
+       * View/MainWindow.cs: 'Start' button is unneccessary
+
+2007-08-08  Alan McGovern <[EMAIL PROTECTED]> 
+
        * Model/Draw/RecordDraw.cs: Use 'Pause' rather than stop.
 
 2007-08-08  Alan McGovern <[EMAIL PROTECTED]> 

Modified: trunk/lunareclipse/View/MainWindow.cs
===================================================================
--- trunk/lunareclipse/View/MainWindow.cs       2007-08-08 21:07:43 UTC (rev 
83691)
+++ trunk/lunareclipse/View/MainWindow.cs       2007-08-08 21:13:34 UTC (rev 
83692)
@@ -85,19 +85,7 @@
                private Box InitialiseAnimationWidgets()
                {
                        Box box = new VBox();
-                       Button b = new Button("Start");
                        
-                       b.Clicked += delegate (object sender, EventArgs e) {
-                               Button button = (Button)sender;
-                               
-                               if(button.Label == "Start")
-                               {
-                                       this.controller.Current.Cleanup();
-                                       this.controller.Current.Prepare();
-                               }
-                       };
-                       box.Add(b);
-                       
                        b = new Button("Play");
                        b.Clicked += delegate (object sender, EventArgs e) {
                                RecordDraw animation = controller.Current as 
RecordDraw;

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to