Changed the inital size of geolocation window

This commit is contained in:
Kelly Kelly 2020-01-24 12:40:41 -05:00
parent 767397bcb4
commit f7c79d2e3a
3 changed files with 5 additions and 1 deletions

View File

@ -3,7 +3,7 @@
<name unique="geolocation"/>
<kind type="editor"/>
<state type="separated"/>
<bounds x="76" y="68" width="500" height="500"/>
<bounds x="76" y="68" width="800" height="500"/>
<frame state="0"/>
<empty-behavior permanent="false"/>

View File

@ -99,6 +99,9 @@
<Component class="javax.swing.JSpinner" name="daysSpinner">
<Properties>
<Property name="enabled" type="boolean" value="false"/>
<Property name="preferredSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
<Dimension value="[75, 26]"/>
</Property>
</Properties>
<AuxValues>
<AuxValue name="JavaCodeGenerator_CreateCodeCustom" type="java.lang.String" value="new javax.swing.JSpinner(numberModel)"/>

View File

@ -226,6 +226,7 @@ class GeoFilterPanel extends javax.swing.JPanel {
waypointSettings.add(showWaypointsWOTSCheckBox, gridBagConstraints);
daysSpinner.setEnabled(false);
daysSpinner.setPreferredSize(new java.awt.Dimension(75, 26));
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.gridx = 2;
gridBagConstraints.gridy = 1;