Builder4/ValaProjectSettings.bjs
authorAlan Knowles <alan@roojs.com>
Wed, 19 Nov 2014 09:35:59 +0000 (17:35 +0800)
committerAlan Knowles <alan@roojs.com>
Wed, 19 Nov 2014 09:35:59 +0000 (17:35 +0800)
Builder4/ValaProjectSettings.vala

Builder4/ValaProjectSettings.bjs
Builder4/ValaProjectSettings.vala

index 9a9111c..901d8aa 100644 (file)
                                                 },
                                                 {
                                                     "listeners" : {
-                                                        "activate" : "()  => {\n    \n    var  chooser = new Gtk.FileChooserDialog (\n\t\"Add a directory\", _this.window.el, Gtk.FileChooserAction.SELECT_FOLDER ,\n\t\"_Cancel\",\n\tGtk.ResponseType.CANCEL,\n\t\"_Add\",\n\tGtk.ResponseType.ACCEPT);\n    if (chooser.run () != Gtk.ResponseType.ACCEPT) {\n        chooser.close ();\n           return;\n       }\n       chooser.close ();\n       // add the directory..\n       var fn = _this.project.relPath(chooser.get_filename());\n       _this.project.compilegroups.get(\"_default_\").sources.add(fn);\n       _this.default_directory_tree_store.load();\n}"
+                                                        "activate" : "()  => {\n    return;\n     //\n       // add the directory..\n       var fn = _this.project.relPath(chooser.get_filename());\n       _this.project.compilegroups.get(\"_default_\").sources.remove(fn);\n       _this.default_directory_tree_store.load();\n}"
                                                     },
                                                     "* pack" : "add",
                                                     "xtype" : "MenuItem",
index 02c24db..1b4a17b 100644 (file)
@@ -813,21 +813,11 @@ public class ValaProjectSettings : Object
 
             // listeners 
             this.el.activate.connect( ()  => {
-                
-                var  chooser = new Gtk.FileChooserDialog (
-               "Add a directory", _this.window.el, Gtk.FileChooserAction.SELECT_FOLDER ,
-               "_Cancel",
-               Gtk.ResponseType.CANCEL,
-               "_Add",
-               Gtk.ResponseType.ACCEPT);
-                if (chooser.run () != Gtk.ResponseType.ACCEPT) {
-                    chooser.close ();
-                       return;
-                   }
-                   chooser.close ();
+                return;
+                 //
                    // add the directory..
                    var fn = _this.project.relPath(chooser.get_filename());
-                   _this.project.compilegroups.get("_default_").sources.add(fn);
+                   _this.project.compilegroups.get("_default_").sources.remove(fn);
                    _this.default_directory_tree_store.load();
             });
         }