From c5ecd86956a4042b8cf8b786e86cca6017b9e637 Mon Sep 17 00:00:00 2001 From: MoMeak Date: Mon, 4 Sep 2017 10:59:36 +0800 Subject: [PATCH] =?UTF-8?q?REPORT-3933=20[9.0=E4=B8=80=E8=BD=AE=E5=9B=9E?= =?UTF-8?q?=E5=BD=92]=E6=98=BE=E7=A4=BA=E6=9D=A1=E5=BD=A2=E7=A0=81?= =?UTF-8?q?=E7=9A=84=E6=96=87=E6=9C=AC=E5=8B=BE=E9=80=89=E5=BC=82=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- designer/src/com/fr/design/present/BarCodePane.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/designer/src/com/fr/design/present/BarCodePane.java b/designer/src/com/fr/design/present/BarCodePane.java index ac3820338..74f5306b6 100644 --- a/designer/src/com/fr/design/present/BarCodePane.java +++ b/designer/src/com/fr/design/present/BarCodePane.java @@ -145,11 +145,13 @@ public class BarCodePane extends FurtherBasicBeanPane { barHeightContainer.add(barHeightSpinner); UILabel uiLabel = new UILabel(Inter.getLocText("FR-Designer-Tree_Width"), UILabel.RIGHT); uiLabel.setPreferredSize(typeSetLabel.getPreferredSize()); + JPanel drawingTextCheckBoxPane = FRGUIPaneFactory.createLeftFlowZeroGapBorderPane(); drawingTextCheckBox.setBorder(UIConstants.CELL_ATTR_ZEROBORDER); + drawingTextCheckBoxPane.add(drawingTextCheckBox); Component[][] components_normal = new Component[][]{ new Component[]{new UILabel(Inter.getLocText("FR-Designer_Barcode_Size"), UILabel.LEFT), barWidthContainer, barHeightContainer}, - new Component[]{null, new UILabel(Inter.getLocText("FR-Designer-Tree_Width"), UILabel.CENTER), new UILabel(Inter.getLocText("FR-Designer_Height"), UILabel.CENTER)}, - new Component[]{drawingTextCheckBox, null, null} + new Component[]{null, new UILabel(Inter.getLocText("FR-Designer-Tree_Width"), UILabel.CENTER), new UILabel(Inter.getLocText("FR-Designer-Tree_Height"), UILabel.CENTER)}, + new Component[]{drawingTextCheckBoxPane, null, null} };