From 1b6e41afa97f1798cd40c8739da60ef17d96f616 Mon Sep 17 00:00:00 2001 From: adam-m <amalinowski@basistech.com> Date: Thu, 27 Sep 2012 11:03:52 -0400 Subject: [PATCH] resize report dialog --- .../org/sleuthkit/autopsy/report/ReportPanel.form | 12 ++++++------ .../org/sleuthkit/autopsy/report/ReportPanel.java | 8 ++++---- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/report/ReportPanel.form b/Core/src/org/sleuthkit/autopsy/report/ReportPanel.form index 7bc04bd3ed..7d093b015b 100644 --- a/Core/src/org/sleuthkit/autopsy/report/ReportPanel.form +++ b/Core/src/org/sleuthkit/autopsy/report/ReportPanel.form @@ -1,4 +1,4 @@ -<?xml version="1.1" encoding="UTF-8" ?> +<?xml version="1.0" encoding="UTF-8" ?> <Form version="1.5" maxVersion="1.7" type="org.netbeans.modules.form.forminfo.JPanelFormInfo"> <NonVisualComponents> @@ -14,7 +14,7 @@ </Properties> <AccessibilityProperties> <Property name="AccessibleContext.accessibleName" type="java.lang.String" value=""/> - <Property name="AccessibleContext.accessibleParent" type="javax.accessibility.Accessible" editor="org.netbeans.modules.form.RADVisualComponent$AccessibleParentEditor"> + <Property name="AccessibleContext.accessibleParent" type="javax.accessibility.Accessible" editor="org.netbeans.modules.form.ComponentChooserEditor"> <ComponentRef name="Form"/> </Property> </AccessibilityProperties> @@ -42,7 +42,7 @@ <DimensionLayout dim="1"> <Group type="103" groupAlignment="0" attributes="0"> <Group type="102" alignment="1" attributes="0"> - <EmptySpace pref="41" max="32767" attributes="0"/> + <EmptySpace pref="60" max="32767" attributes="0"/> <Component id="jPanel1" max="32767" attributes="0"/> <EmptySpace max="-2" attributes="0"/> </Group> @@ -53,11 +53,11 @@ <Container class="javax.swing.JPanel" name="jPanel1"> <Properties> <Property name="minimumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor"> - <Dimension value="[650, 200]"/> + <Dimension value="[650, 250]"/> </Property> <Property name="name" type="java.lang.String" value="" noResource="true"/> <Property name="preferredSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor"> - <Dimension value="[650, 200]"/> + <Dimension value="[650, 250]"/> </Property> </Properties> @@ -81,7 +81,7 @@ <DimensionLayout dim="1"> <Group type="103" groupAlignment="0" attributes="0"> <Group type="102" alignment="0" attributes="0"> - <EmptySpace pref="134" max="32767" attributes="0"/> + <EmptySpace pref="184" max="32767" attributes="0"/> <Component id="jLabel1" min="-2" max="-2" attributes="0"/> <EmptySpace type="separate" max="-2" attributes="0"/> <Group type="103" groupAlignment="3" attributes="0"> diff --git a/Core/src/org/sleuthkit/autopsy/report/ReportPanel.java b/Core/src/org/sleuthkit/autopsy/report/ReportPanel.java index 414623e76d..b68646f5a4 100644 --- a/Core/src/org/sleuthkit/autopsy/report/ReportPanel.java +++ b/Core/src/org/sleuthkit/autopsy/report/ReportPanel.java @@ -71,9 +71,9 @@ private void initComponents() { setMinimumSize(new java.awt.Dimension(540, 252)); - jPanel1.setMinimumSize(new java.awt.Dimension(650, 200)); + jPanel1.setMinimumSize(new java.awt.Dimension(650, 250)); jPanel1.setName(""); // NOI18N - jPanel1.setPreferredSize(new java.awt.Dimension(650, 200)); + jPanel1.setPreferredSize(new java.awt.Dimension(650, 250)); jLabel1.setText(org.openide.util.NbBundle.getMessage(ReportPanel.class, "ReportPanel.jLabel1.text")); // NOI18N jLabel1.setHorizontalTextPosition(javax.swing.SwingConstants.LEFT); @@ -106,7 +106,7 @@ public void actionPerformed(java.awt.event.ActionEvent evt) { jPanel1Layout.setVerticalGroup( jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(jPanel1Layout.createSequentialGroup() - .addContainerGap(134, Short.MAX_VALUE) + .addContainerGap(184, Short.MAX_VALUE) .addComponent(jLabel1) .addGap(18, 18, 18) .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) @@ -126,7 +126,7 @@ public void actionPerformed(java.awt.event.ActionEvent evt) { layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup() - .addContainerGap(41, Short.MAX_VALUE) + .addContainerGap(60, Short.MAX_VALUE) .addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addContainerGap()) ); -- GitLab