From fbe68831f80e89f9202dec13a96d67e246cde973 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Wed, 31 Dec 2025 15:26:48 +0800 Subject: [PATCH] bugfix --- bricks/popup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bricks/popup.js b/bricks/popup.js index dc3ade3..2855cb3 100644 --- a/bricks/popup.js +++ b/bricks/popup.js @@ -174,7 +174,7 @@ bricks.Popup = class extends bricks.VBox { return; } this.is_resizing = true; - var d = calculate_moving_pos(e); + var d = this.calculate_moving_pos(e); var cx, cy; cx = this.get_width() + d.x; cy = this.get_height() + d.y;