X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=Ticket.vala;h=cb75d9d86275237b66762806a7d9d6049c3b8f72;hb=e72babd0e136a555062dc816bf360ac240e7e9f3;hp=49a0191d5f66e654b4a56d86d06e59ebc7d63056;hpb=0f3fc898b3f425daec52bf023f8ba31f64b54d4c;p=gitlive diff --git a/Ticket.vala b/Ticket.vala index 49a0191d..cb75d9d8 100644 --- a/Ticket.vala +++ b/Ticket.vala @@ -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(), 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);