[longomatch/fakelive] Change the message type to "Info" enabling only the OK button



commit 3869081dd5045d25bad6d7b258c6cc1935bf7e39
Author: Andoni Morales Alastruey <ylatuya gmail com>
Date:   Sun Mar 14 15:10:29 2010 +0100

    Change the message type to "Info" enabling only the OK button

 LongoMatch/Gui/MainWindow.cs |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)
---
diff --git a/LongoMatch/Gui/MainWindow.cs b/LongoMatch/Gui/MainWindow.cs
index d7587b2..c6b06e9 100644
--- a/LongoMatch/Gui/MainWindow.cs
+++ b/LongoMatch/Gui/MainWindow.cs
@@ -285,10 +285,9 @@ namespace LongoMatch.Gui
 		}
 		
 		private void SaveFakeLiveProject(Project project){
-			MessageDialog md = new MessageDialog((Gtk.Window)this.Toplevel, DialogFlags.Modal, MessageType.Question, ButtonsType.OkCancel,
+			MessageDialog md = new MessageDialog((Gtk.Window)this.Toplevel, DialogFlags.Modal, MessageType.Info, ButtonsType.Ok,
 			                                     Catalog.GetString("The project will be saved to a file. You can insert it later into the database using the "+
-			                                                       "Import function once you copied the video file to your computer.\n"+
-			                                                       "If you cancel this action all your changes will be lost!"));			                                           
+			                                                       "\"Import project\" function once you copied the video file to your computer"));			                                           
 			if (md.Run() == (int)ResponseType.Cancel){
 				md.Destroy();
 				return;



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