X-Git-Url: http://git.roojs.org/?p=gitlive;a=blobdiff_plain;f=StatusIcon.vala;h=f429e1a9aea610e0d707c716ac6b3b983ff02f8b;hp=efedebaa34e8fc32f788e31b7954c738cbf1fe2a;hb=72a4edfbda67d0bf3eb93a91c28c4084945ddae5;hpb=9e641e366549656621a3e4fc4950b62c4b395650 diff --git a/StatusIcon.vala b/StatusIcon.vala index efedebaa..f429e1a9 100644 --- a/StatusIcon.vala +++ b/StatusIcon.vala @@ -180,6 +180,7 @@ public class StatusIconA : StatusIcon { this.append(this.after_seperator); //this.append(new MenuItemUpdateTimesheet()); this.append(new MenuItemManageClones()); + this.append(new MenuItemNewTicket()); this.append(new MenuItemAbout()); this.append(new MenuItemQuit()); this.merge_items = new Gee.ArrayList(); @@ -195,7 +196,7 @@ public class StatusIconA : StatusIcon { } foreach(var r in GitRepo.singleton().cache.values ) { GLib.debug("checking %s for branch = %s", r.name, r.currentBranch.name); - if (!r.is_wip_branch()) { + if (r.is_master_branch()) { continue; } GLib.debug("checking for activeTicket"); @@ -468,6 +469,30 @@ public class StatusIconA : StatusIcon { } + class MenuItemNewTicket : ImageMenuItem { + + public MenuItemNewTicket() + { + + var image = new Gtk.Image(); + image.set_from_stock(Gtk.Stock.FULLSCREEN,Gtk.IconSize.MENU ); + this.set_image (image); + this.label= "New Ticket"; + this.always_show_image = true; + this.accel_group = null; + + this.activate.connect( () => { + Ticket.singleton().show(null); + + + // Clones.singleton().show(); + }); + } + + + } + + class MenuItemAbout : ImageMenuItem { public MenuItemAbout()