RooTicket.vala
[gitlive] / RepoStatusPopover.vala
index 00bb428..d9e384e 100644 (file)
@@ -62,7 +62,7 @@ public class RepoStatusPopover : Object
        // window + header?
         GLib.debug("SHOWALL - POPIP\n");
        this.el.show_all();
-       this.el.set_size_request(800,500);
+       //this.el.set_size_request(800,500);
     // this.diff_view.el.grab_focus();
        
         //this.el.show_all();
@@ -293,6 +293,7 @@ public class RepoStatusPopover : Object
             // my vars (dec)
 
             // set gobject values
+            this.el.height_request = 400;
             var child_0 = new Xcls_diff_view( _this );
             child_0.ref();
             this.el.add (  child_0.el  );
@@ -387,9 +388,12 @@ public class RepoStatusPopover : Object
 
             //listeners
             this.el.button_press_event.connect( () => {
+              
+               
+               GitMonitor.gitmonitor.stop();
                _this.repo.git({ "stash" , "--all" });
                _this.repo.loadStatus();
-               
+               GitMonitor.gitmonitor.start();
                 _this.diff_view.el.get_buffer().set_text(_this.repo.git_diff);
                 _this.status_view.el.get_buffer().set_text(_this.repo.git_status);
                 Clones.singleton().reposStore.load();
@@ -462,8 +466,9 @@ public class RepoStatusPopover : Object
             //listeners
             this.el.button_press_event.connect( () => {
                var oldq = new Gee.ArrayList<GitMonitorQueue>();  
-                
-               NewBranch.singleton().show(q.repo, oldq);
+               _this.el.hide();
+               Clones.singleton().el.hide();
+               NewBranch.singleton().show(_this.repo, oldq);
             
                 return false;
             });