From 99f61ae8fe2bac0c69ec889fe21a10e9e53d313c Mon Sep 17 00:00:00 2001 From: yumoqing Date: Tue, 18 Nov 2025 16:14:13 +0800 Subject: [PATCH] bugfix --- bricks/bricks.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bricks/bricks.js b/bricks/bricks.js index e156d1c..c9f2271 100644 --- a/bricks/bricks.js +++ b/bricks/bricks.js @@ -576,7 +576,8 @@ bricks.App = class extends bricks.Layout { this.textList = []; this.i18n = new bricks.I18n(objget(opts, 'i18n', {})); this.session_id = null; - this.tooltip = new bricks.Tooltip({otext:'test',i18n:true, wrap:true}); + this.tooltip = new bricks.Tooltip({otext:'',i18n:true, wrap:true}); + this.tooltip.hide(); this.add_widget(this.tooltip); this._Width = this.dom_element.offsetWidth; this._Height = this.dom_element.offsetHeight;