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

Builder4/ValaProjectSettings.bjs
Builder4/ValaProjectSettings.vala

index 79a610a..8d08736 100644 (file)
                                             "items" : [
                                                 {
                                                     "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       _this.project.compilegroups.get(\"_default_\").sources.add(chooser.get_uri ());\n       _this.default_directory_tree_store.load();\n}"
+                                                        "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(tchooser.get_filename());\n       _this.project.compilegroups.get(\"_default_\").sources.add(fn);\n       _this.default_directory_tree_store.load();\n}"
                                                     },
                                                     "* pack" : "add",
                                                     "xtype" : "MenuItem",
index 40234eb..81e48ee 100644 (file)
@@ -712,7 +712,8 @@ public class ValaProjectSettings : Object
                    }
                    chooser.close ();
                    // add the directory..
-                   _this.project.compilegroups.get("_default_").sources.add(chooser.get_uri ());
+                   var fn = _this.project.relPath(tchooser.get_filename());
+                   _this.project.compilegroups.get("_default_").sources.add(fn);
                    _this.default_directory_tree_store.load();
             });
         }