Skip to content

Commit 89e17ec

Browse files
author
William Schaefer
committed
6225 second try at screenshot 17
1 parent ad808e0 commit 89e17ec

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

Core/src/org/sleuthkit/autopsy/corecomponents/DataContentViewerArtifact.form

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,12 @@
8282
<Property name="text" type="java.lang.String" editor="org.netbeans.modules.i18n.form.FormI18nStringEditor">
8383
<ResourceString bundle="org/sleuthkit/autopsy/corecomponents/Bundle.properties" key="DataContentViewerArtifact.totalPageLabel.text" replaceFormat="org.openide.util.NbBundle.getMessage({sourceFileName}.class, &quot;{key}&quot;)"/>
8484
</Property>
85+
<Property name="maximumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
86+
<Dimension value="[40, 16]"/>
87+
</Property>
88+
<Property name="preferredSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
89+
<Dimension value="[25, 16]"/>
90+
</Property>
8591
</Properties>
8692
<Constraints>
8793
<Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
@@ -107,13 +113,13 @@
107113
<ResourceString bundle="org/sleuthkit/autopsy/corecomponents/Bundle.properties" key="DataContentViewerArtifact.currentPageLabel.text" replaceFormat="org.openide.util.NbBundle.getMessage({sourceFileName}.class, &quot;{key}&quot;)"/>
108114
</Property>
109115
<Property name="maximumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
110-
<Dimension value="[18, 14]"/>
116+
<Dimension value="[38, 14]"/>
111117
</Property>
112118
<Property name="minimumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
113119
<Dimension value="[18, 14]"/>
114120
</Property>
115121
<Property name="preferredSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
116-
<Dimension value="[18, 14]"/>
122+
<Dimension value="[20, 14]"/>
117123
</Property>
118124
</Properties>
119125
<Constraints>

Core/src/org/sleuthkit/autopsy/corecomponents/DataContentViewerArtifact.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,8 @@ private void initComponents() {
235235
jPanel1.setLayout(new java.awt.GridBagLayout());
236236

237237
totalPageLabel.setText(org.openide.util.NbBundle.getMessage(DataContentViewerArtifact.class, "DataContentViewerArtifact.totalPageLabel.text")); // NOI18N
238+
totalPageLabel.setMaximumSize(new java.awt.Dimension(40, 16));
239+
totalPageLabel.setPreferredSize(new java.awt.Dimension(25, 16));
238240
gridBagConstraints = new java.awt.GridBagConstraints();
239241
gridBagConstraints.gridx = 3;
240242
gridBagConstraints.gridy = 0;
@@ -253,9 +255,9 @@ private void initComponents() {
253255
jPanel1.add(ofLabel, gridBagConstraints);
254256

255257
currentPageLabel.setText(org.openide.util.NbBundle.getMessage(DataContentViewerArtifact.class, "DataContentViewerArtifact.currentPageLabel.text")); // NOI18N
256-
currentPageLabel.setMaximumSize(new java.awt.Dimension(18, 14));
258+
currentPageLabel.setMaximumSize(new java.awt.Dimension(38, 14));
257259
currentPageLabel.setMinimumSize(new java.awt.Dimension(18, 14));
258-
currentPageLabel.setPreferredSize(new java.awt.Dimension(18, 14));
260+
currentPageLabel.setPreferredSize(new java.awt.Dimension(20, 14));
259261
gridBagConstraints = new java.awt.GridBagConstraints();
260262
gridBagConstraints.gridx = 1;
261263
gridBagConstraints.gridy = 0;

0 commit comments

Comments
 (0)