From da0d566e17cc5a934aa0951bbcb4f2ba6d9d4e53 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Tue, 18 Dec 2018 12:20:14 +0800 Subject: [PATCH] Uncommited changes synced --- NewBranch.bjs | 2 +- NewBranch.vala | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/NewBranch.bjs b/NewBranch.bjs index b566849c..cd71ccaf 100644 --- a/NewBranch.bjs +++ b/NewBranch.bjs @@ -214,7 +214,7 @@ "* 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" } ] } diff --git a/NewBranch.vala b/NewBranch.vala index 00dd30ad..dbb68ee9 100644 --- a/NewBranch.vala +++ b/NewBranch.vala @@ -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"); } -- 2.39.2