From 1ad692f26c48b59f48c13b8d4c75ade787a77c1d Mon Sep 17 00:00:00 2001 From: kerry Date: Wed, 6 Jun 2018 15:19:03 +0800 Subject: [PATCH] =?UTF-8?q?REPORT-8354=20=E5=8F=98=E9=87=8F=E5=90=8D?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../fr/design/widget/component/BackgroundCompPane.java | 6 +++--- .../ui/designer/component/TabFitLayoutBackgroundPane.java | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/designer-base/src/com/fr/design/widget/component/BackgroundCompPane.java b/designer-base/src/com/fr/design/widget/component/BackgroundCompPane.java index 2702b0c55..77c42cead 100644 --- a/designer-base/src/com/fr/design/widget/component/BackgroundCompPane.java +++ b/designer-base/src/com/fr/design/widget/component/BackgroundCompPane.java @@ -21,7 +21,7 @@ import java.awt.Component; */ public abstract class BackgroundCompPane extends BasicPane { protected UIButtonGroup backgroundHead; - protected AccessibleImgBackgroundEditor initalBackgroundEditor; + protected AccessibleImgBackgroundEditor initialBackgroundEditor; protected AccessibleImgBackgroundEditor overBackgroundEditor; protected AccessibleImgBackgroundEditor clickBackgroundEditor; private JPanel panel; @@ -42,7 +42,7 @@ public abstract class BackgroundCompPane extends BasicPane { double[] columnSize = {p, f}; int[][] rowCount = {{1, 1},{1, 1},{1, 1}}; Component[][] components = new Component[][]{ - new Component[]{new UILabel(Inter.getLocText("FR-Designer_Background-Initial")), initalBackgroundEditor}, + new Component[]{new UILabel(Inter.getLocText("FR-Designer_Background-Initial")), initialBackgroundEditor}, new Component[]{new UILabel(Inter.getLocText("FR-Designer_Background-Over")), overBackgroundEditor}, new Component[]{getClickLabel(), clickBackgroundEditor}, }; @@ -58,7 +58,7 @@ public abstract class BackgroundCompPane extends BasicPane { } protected void initBackgroundEditor(){ - initalBackgroundEditor = new AccessibleImgBackgroundEditor(); + initialBackgroundEditor = new AccessibleImgBackgroundEditor(); overBackgroundEditor = new AccessibleImgBackgroundEditor(); clickBackgroundEditor = new AccessibleImgBackgroundEditor(); } diff --git a/designer-form/src/com/fr/design/widget/ui/designer/component/TabFitLayoutBackgroundPane.java b/designer-form/src/com/fr/design/widget/ui/designer/component/TabFitLayoutBackgroundPane.java index 94194a232..dd21b4d84 100644 --- a/designer-form/src/com/fr/design/widget/ui/designer/component/TabFitLayoutBackgroundPane.java +++ b/designer-form/src/com/fr/design/widget/ui/designer/component/TabFitLayoutBackgroundPane.java @@ -18,7 +18,7 @@ public class TabFitLayoutBackgroundPane extends BackgroundCompPane