From d387079303bcfd0a7ab6932b142de3597ed400c4 Mon Sep 17 00:00:00 2001 From: Zhanying <2446962908@qq.com> Date: Mon, 13 Jan 2025 16:36:58 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E3=80=90=E8=A7=86=E8=A7=89=E9=AA=8C?= =?UTF-8?q?=E6=94=B6=E3=80=91=E6=8F=90=E7=A4=BA=E5=8F=B3=E4=BE=A7=E6=9C=89?= =?UTF-8?q?=E7=A9=BA=E7=BC=BA=EF=BC=8C=E9=9C=80=E8=A6=81=E8=B4=B4=E5=90=88?= =?UTF-8?q?=E6=BB=9A=E5=8A=A8=E6=9D=A1=20#REPORT-146580?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/com/fr/design/mainframe/FormArea.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/designer-form/src/main/java/com/fr/design/mainframe/FormArea.java b/designer-form/src/main/java/com/fr/design/mainframe/FormArea.java index 314851b0e9..ec0de92fc2 100644 --- a/designer-form/src/main/java/com/fr/design/mainframe/FormArea.java +++ b/designer-form/src/main/java/com/fr/design/mainframe/FormArea.java @@ -876,7 +876,7 @@ public class FormArea extends JComponent implements ScrollRulerComponent { int designerTop = top + (horScrollBar.getY() - DESIGNERHEIGHT) / 2; if (fvsGuidePane != null) { Dimension fvsGuidePreferredSize = fvsGuidePane.getPreferredSize(); - fvsGuidePane.setBounds(left, top, right - BARSIZE - 2, fvsGuidePreferredSize.height); + fvsGuidePane.setBounds(left, top, DESIGNERWIDTH, fvsGuidePreferredSize.height); DESIGNERHEIGHT -= fvsGuidePreferredSize.height; designerTop += fvsGuidePreferredSize.height; }