Uncommited changes synced
authorAlan Knowles <alan@roojs.com>
Tue, 18 Dec 2018 04:20:14 +0000 (12:20 +0800)
committerAlan Knowles <alan@roojs.com>
Tue, 18 Dec 2018 04:20:14 +0000 (12:20 +0800)
NewBranch.bjs
NewBranch.vala

index b566849..cd71cca 100644 (file)
          "* pack" : "add",
          "xtype" : "WebView",
          "$ xns" : "WebKit",
-         "| void loadTicket" : "(string tid) {\n\tif (tid == \"\") {\n\t\t_this.scrolled_window.el.hide();\n\t} else {\n\t\t_this.scrolled_window.el.show();\n\t}\n\t this.el.load_uri(\"http://www.google.com\");\n}\n"
+         "| void loadTicket" : "(string tid) {\n\tint h,w;\n\t_this.el.get_size(out w, out h);\n\t\n\tif (tid == \"\") {\n\t\t_this.scrolled_window.el.hide();\n\t\t_this.el.resize(w, 300);\n\t} else {\n\t\t_this.scrolled_window.el.show();\n\t\t_this.el.resize(w, 800);\n\t}\n\t this.el.load_uri(\"http://www.google.com\");\n}\n"
         }
        ]
       }
index 00dd30a..dbb68ee 100644 (file)
@@ -896,10 +896,15 @@ public class NewBranch : Object
 
         // user defined functions
         public void loadTicket (string tid) {
+               int h,w;
+               _this.el.get_size(out w, out h);
+               
                if (tid == "") {
                        _this.scrolled_window.el.hide();
+                       _this.el.resize(w, 300);
                } else {
                        _this.scrolled_window.el.show();
+                       _this.el.resize(w, 800);
                }
                 this.el.load_uri("http://www.google.com");
         }