fix commits
[gitlive] / NewBranch.vala
index 03e56b9..bd6fedd 100644 (file)
@@ -37,7 +37,7 @@ public class NewBranch : Object
 
         // my vars (dec)
         this.repo = null;
-        this.running = true;
+        this.running = false;
         this.queue = null;
 
         // set gobject values
@@ -60,9 +60,7 @@ public class NewBranch : Object
           
                GLib.debug("got %d", (int) response_id);
                
-               
-               
-               
+                
                
                 
                // have they selected a ticket..
@@ -72,20 +70,15 @@ public class NewBranch : Object
                // -- each repo would have their active ticket (only one per repo)
                // -- so we could just store that in there
                // -- initial load can check the contents of the ticket files on first scan.
-               var ticket_id = _this.ticketsel.selectedTicketId();
-               
-               if (ticket_id == "") {
-                       _this.ticketsel.el.get_child().get_style_context().add_class("warning");
-                       return;
-               }
-               
-               
+        
+                
                if (response_id < 1) {
                    _this.el.hide();    
                    this.running = false; 
                        return;
                }
                
+               var ticket_id = _this.ticketsel.selectedTicketId();
                
             if (this.repo != null) {
                var bn = _this.name.el.get_text();
@@ -99,7 +92,7 @@ public class NewBranch : Object
                                 
                         }
             }
-            
+             
         
             this.running = false; 
         
@@ -722,7 +715,16 @@ public class NewBranch : Object
 
             //listeners
             this.el.clicked.connect( () => {
+            
                GLib.debug("fire response = 1");
+               
+               var ticket_id = _this.ticketsel.selectedTicketId();
+               
+               if (ticket_id == "") {
+                       _this.ticketsel.el.get_child().get_style_context().add_class("warning");
+                       return;
+               }
+                
                _this.el.response(1);
             });
         }