Uncommited changes synced
[gitlive] / Ticket.vala
index 49a0191..cb75d9d 100644 (file)
@@ -79,11 +79,12 @@ public class Ticket : Object
                        _this.summary.el.get_text() ,
                        _this.description.el.buffer.text 
                );
-               
+               this.el.hide();
+            this.running = false; 
                if (this.repo != null) {
                        NewBranch.singleton().show(this.repo, new Gee.ArrayList<GitMonitorQueue>(), tid);
                }
-                
+        
         
                 
         });
@@ -117,7 +118,7 @@ public class Ticket : Object
     
        RooProject? curproj = null;
         if (this.repo != null) {
-           curproj = RooTicket.singleton().getProjectByRepo(this.repo);
+           curproj = RooProject.getProjectByRepo(this.repo);
         }
        _this.prmodel.loadProjects(curproj == null ? "" : curproj.id);
         if (curproj != null) {
@@ -133,6 +134,9 @@ public class Ticket : Object
                _this.devmodel.loadDevelopers();        
                
         }
+               _this.summary.el.set_text("");
+               _this.description.el.buffer.text = ""; 
+        
      
        this.el.run();
     
@@ -422,8 +426,6 @@ public class Ticket : Object
         // user defined functions
         public void loadProjects (string id) {
         
-            var rt = RooTicket.singleton();
-            rt.loadProjects();
             
             _this.project_id.loading = true;
         
@@ -439,8 +441,8 @@ public class Ticket : Object
             if (id == "") {
                    _this.project_id.el.set_active_iter(iter);
             }
-            var projects = rt.projects;
-            foreach(var project in projects) {
+        
+            foreach(var project in RooProject.projects()) {
             
                 el.append(out iter);