Compare commits

...

2 Commits

Author SHA1 Message Date
848225ac45 bugfix 2026-01-28 13:27:42 +08:00
bd8d4faf18 bugfix 2026-01-28 13:26:04 +08:00

View File

@ -543,7 +543,7 @@ bricks.Tooltip = class extends bricks.Text {
this.set_style('display', 'block');
bricks.relocate_by_eventpos(event, this);
if (this.auto_task){
this.auto_task.cancel();
clearTimeout(this.auto_task);
this.auto_task = null;
}
this.auto_task = schedule_once(this.hide.bind(this), 6);