src/Builder4/WindowState.vala
[app.Builder.js] / src / Builder4 / WindowState.vala
index 969dec2..08dd43b 100644 (file)
@@ -95,7 +95,7 @@ public class WindowState : Object
                
                
                this.valasource = new Palete.ValaSource();
-               this.valasource.compiled.connect(this.valaCompiled);
+               this.valasource.compiled.connect(this.showCompileResult);
                
                this.compile_results = new  Xcls_ValaCompileResults();
                this.compile_results.window = this.win;
@@ -121,8 +121,8 @@ public class WindowState : Object
                   
                this.left_tree.before_node_change.connect(() => {
                        // if the node change is caused by the editor (code preview)
-                       if (this.left_tree.tree.lastEventSource == "editor") {
-                               return false;
+                       if (this.left_tree.view.lastEventSource == "editor") {
+                               return true;
                        }
                        return this.leftTreeBeforeChange();
 
@@ -139,12 +139,12 @@ public class WindowState : Object
                        }
                });
                
-               this.left_tree.node_selected.connect((sel) => {
-                       this.leftTreeNodeSelected(sel);
+               this.left_tree.node_selected.connect((sel, source) => {
+                       this.leftTreeNodeSelected(sel, source);
                });
         
                this.left_tree.changed.connect(() => {
-                       
+                       print("LEFT TREE: Changed fired\n");
                        this.file.save();
                        if (this.left_tree.getActiveFile().xtype == "Roo" ) {
                                   this.window_rooview.requestRedraw();
@@ -168,7 +168,7 @@ public class WindowState : Object
                return false;
        }
        
-       public void leftTreeNodeSelected(JsRender.Node? sel)
+       public void leftTreeNodeSelected(JsRender.Node? sel, string source)
        {
 
                print("node_selected called %s\n", (sel == null) ? "NULL" : "a value");
@@ -1135,7 +1135,7 @@ public class WindowState : Object
        }
        
        
-       public void valaCompiled(Json.Object obj)
+       public void showCompileResult(Json.Object obj)
                {
                        // vala has finished compiling...
                        print("vala compiled");