X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=StatusIcon.vala;h=64199105d1f39596354e6e65a5de5c91c5b25bb4;hb=aa918439d9cb7113787b05154fa6d00154cbb8a8;hp=45ef148733c1bf3d6f06ca29553377a492f1b298;hpb=b28c96ce50369f3413230db472106dfd4b0ec21c;p=gitlive diff --git a/StatusIcon.vala b/StatusIcon.vala index 45ef1487..64199105 100644 --- a/StatusIcon.vala +++ b/StatusIcon.vala @@ -39,7 +39,8 @@ public class StatusIconA : StatusIcon { public bool paused = false; public static StatusIconA statusicon; - + + public StatusIconA() { statusicon = this; @@ -56,7 +57,7 @@ public class StatusIconA : StatusIcon { menu.ref(); this.button_press_event.connect( ( ev ) =>{ print("button press event called\n"); - + menu.show_all(); if (this.paused) { @@ -82,7 +83,7 @@ public class StatusIconA : StatusIcon { }); this.popup_menu.connect( ( button, time) =>{ //this.button_press_event.connect( ( ) =>{ - + //print(Array.prototype.slice.call(arguments).join(',')); print("menu activiate called\n"); //var menu = this.get('menu'); @@ -335,7 +336,8 @@ public class StatusIconA : StatusIcon { if (err > 0) { this.has_error = 1; - + this.pull_all_error_message += this.pull_all_error_message.length > 0 ? "\n" : ""; + this.pull_all_error_message += "Error Pulling " + repo.name +"\n" + res; } if (!Regex.match_simple ("Already up-to-date", res) ) { @@ -351,8 +353,10 @@ public class StatusIconA : StatusIcon { } if (this.total < 1) { - if (this.has_error) { - GitMonitor.gitmonitor.pauseError( + if (this.has_error > 0) { + GitMonitor.gitmonitor.pauseError(this.pull_all_error_message); + return; + } statusicon.set_tooltip_text("Gitlive"); @@ -400,7 +404,7 @@ public class StatusIconA : StatusIcon { this.accel_group = null; this.activate.connect( () => { - //var ret = imports.Clones.Clones.show(); + Clones.singleton().show(); }); }