[longomatch] Don't hide the playlist when project is closed



commit cab7da042118a60c10081173041201a7802dd14d
Author: Andoni Morales Alastruey <ylatuya gmail com>
Date:   Mon Feb 15 19:59:14 2010 +0100

    Don't hide the playlist when project is closed

 LongoMatch/Gui/MainWindow.cs |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)
---
diff --git a/LongoMatch/Gui/MainWindow.cs b/LongoMatch/Gui/MainWindow.cs
index b081353..2aa7dda 100644
--- a/LongoMatch/Gui/MainWindow.cs
+++ b/LongoMatch/Gui/MainWindow.cs
@@ -145,9 +145,14 @@ namespace LongoMatch.Gui
 		}
 
 		private void CloseActualProyect() {
+			bool playlistVisible = playlistwidget2.Visible;
+			
 			Title = "LongoMatch";
 			ClearWidgets();
 			HideWidgets();
+			playlistwidget2.Visible = playlistVisible;
+			rightvbox.Visible = playlistVisible;
+			noteswidget1.Visible = false;
 			playerbin1.Close();
 			playerbin1.LogoMode = true;
 			SaveDB();



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