Branches.bjs
authorAlan Knowles <alan@akbkhome.com>
Mon, 12 Sep 2011 07:33:08 +0000 (15:33 +0800)
committerAlan Knowles <alan@akbkhome.com>
Mon, 12 Sep 2011 07:33:08 +0000 (15:33 +0800)
Branches.bjs

index 527e733..bda3560 100644 (file)
@@ -51,7 +51,7 @@
                                     "listeners": {
                                         "cursor_changed": "function (self)\n{\n\n   return;\n  // SEE SELECTION.CHANGED\n    if (this.el.get_selection().count_selected_rows() < 1) {\n        //nothing? - clea it?\n        return;\n    }\n        var ret = {};         \n    var model = this.get('/changedFilesStore');\n\n     var s = this.el.get_selection();\n     var files = [];\n    s.selected_foreach(function(model,p,iter) {\n    \n       files.push( model.get_value(iter, 0).value.get_string());\n     \n    });\n    this.get('/patchview').showDiff(files); \n    //var value = ''+ ret.model.get_value(ret.iter, 1).value.get_string();\n     //print(\"OUT?\" + value);// id..\n    // load the list in the right grid..\n     \n    return true;\n\n}"
                                     },
-                                    "id": "remotesView",
+                                    "id": "branchView",
                                     "pack": "add",
                                     "xtype": "TreeView",
                                     "|init": "function() {\n    XObject.prototype.init.call(this);\n        var description = new Pango.FontDescription.c_new();\n   description.set_size(8000);\n     this.el.modify_font(description);\n\n     this.selection = this.el.get_selection();\n      this.selection.set_mode( Gtk.SelectionMode.MULTIPLE);\n    var _this = this;\n  this.selection.signal['changed'].connect(function() {\n     _this.listeners.cursor_changed.apply(\n          _this, [ _this, '']\n       );\n             });\n  }\n",