diff -r c0661ecf943e -r 05aba5def1fc src/FingersDance.Control.UserPanel/UserControlUserPanel.xaml.cs --- a/src/FingersDance.Control.UserPanel/UserControlUserPanel.xaml.cs Tue Nov 24 12:57:18 2009 +0100 +++ b/src/FingersDance.Control.UserPanel/UserControlUserPanel.xaml.cs Tue Nov 24 22:08:57 2009 +0100 @@ -54,13 +54,13 @@ // Insert code required on object creation below this point. } - public UserControlUserPanel(int idPar, Color col, Cutting cutPar, String path, String AnnotationOrSearchMode, Project searchedProj) + public UserControlUserPanel(int idPar, Cutting cutPar, String path, String AnnotationOrSearchMode, Project searchedProj) { this.InitializeComponent(); id = idPar; cut = cutPar; // We make the syncsrc load the good video and cutting - this.UserControlSyncSource.Load(path, col, cut, AnnotationOrSearchMode, searchedProj); + this.UserControlSyncSource.Load(path, cut, AnnotationOrSearchMode, searchedProj); UserControlSyncSource.OnSuccessAnnotation += new EventHandler(UserControlSyncSource_OnSuccessAnnotation); // We make the menu load the good xml UCMenu.MenuXmlFile = (AnnotationOrSearchMode == "Search") ? "menu_search.xml" : "menu.xml";