Fix #5560 - Gitlive - branching wip
[gitlive] / Clones.vala
index e814661..3a91a66 100644 (file)
@@ -71,7 +71,7 @@ public class Clones : Object
         
         this.el.set_deletable(false);
         this.el.set_gravity(Gdk.Gravity.NORTH);
-        this.el.move(Gdk.Screen.width() / 2 ,0);
+        this.el.move((Gdk.Screen.width() / 2 ) -400 ,0);
         this.el.show_all();
         _this.reposStore.load();
         // load clones..
@@ -242,6 +242,10 @@ public class Clones : Object
 
             //listeners
             this.el.clicked.connect( () => {
+            // 
+            
+               //NewBranch.singleton().show();
+            
             /*
                 var rv = this.get('/reposView');
                 var rs = this.get('/reposStore');
@@ -606,7 +610,8 @@ public class Clones : Object
                 // } catch(e) { print(e);}
                   
                 this.el.set_value(iter, 0,   repo.name );
-        //        this.el.set_value(ret.iter, 1, '' + repo.currentBranch.name   );
+                this.el.set_value( iter, 1, repo.currentBranch.name   );
+                this.el.set_value( iter, 2,  repo.branchesToString()   );
         //        this.el.set_value(ret.iter, 2, '' + repo.branches.map(
         //                        function(e) { return e.name; 
         //                    }).join(', ') 
@@ -633,6 +638,7 @@ public class Clones : Object
                 this.el.set_value(iter, 7, col  );      
                 
             }     
+            this.el.set_sort_column_id (0, Gtk.SortType.ASCENDING);
         }
     }
 
@@ -803,8 +809,10 @@ public class Clones : Object
             // my vars (dec)
 
             // set gobject values
+            this.el.sort_column_id = 0;
             this.el.title = "Repo";
             this.el.min_width = 200;
+            this.el.sort_order = Gtk.SortType.ASCENDING;
             this.el.resizable = true;
             var child_0 = new Xcls_cr_repo( _this );
             child_0.ref();