Skip to content

Commit 2589c01

Browse files
author
IMS
authored
Merge pull request IrisShaders#30 from JosueGalRe/fix/bugs
fixed some bugs
2 parents f00f317 + 439ef00 commit 2589c01

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

src/main/java/net/hypercubemc/iris_installer/NewInstaller.form

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,11 @@
121121
</Component>
122122
<Component class="javax.swing.JLabel" name="outdatedText2">
123123
<Properties>
124+
<Property name="font" type="java.awt.Font" editor="org.netbeans.modules.form.editors2.FontEditor">
125+
<FontInfo relative="true">
126+
<Font component="outdatedText2" property="font" relativeSize="false" size="16"/>
127+
</FontInfo>
128+
</Property>
124129
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
125130
<Color blue="0" green="cc" red="ff" type="rgb"/>
126131
</Property>
@@ -350,13 +355,13 @@
350355
<Property name="text" type="java.lang.String" value="Install"/>
351356
<Property name="toolTipText" type="java.lang.String" value=""/>
352357
<Property name="margin" type="java.awt.Insets" editor="org.netbeans.beaninfo.editors.InsetsEditor">
353-
<Insets value="[15, 60, 15, 60]"/>
358+
<Insets value="[10, 65, 10, 65]"/>
354359
</Property>
355360
<Property name="maximumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
356361
<Dimension value="[300, 45]"/>
357362
</Property>
358363
<Property name="minimumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
359-
<Dimension value="[170, 45]"/>
364+
<Dimension value="[173, 45]"/>
360365
</Property>
361366
</Properties>
362367
<Events>

src/main/java/net/hypercubemc/iris_installer/NewInstaller.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -403,9 +403,9 @@ public void mouseClicked(java.awt.event.MouseEvent evt) {
403403
installButton.setFont(installButton.getFont().deriveFont((float)16));
404404
installButton.setText("Install");
405405
installButton.setToolTipText("");
406-
installButton.setMargin(new java.awt.Insets(15, 60, 15, 60));
406+
installButton.setMargin(new java.awt.Insets(10, 65, 10, 65));
407407
installButton.setMaximumSize(new java.awt.Dimension(300, 45));
408-
installButton.setMinimumSize(new java.awt.Dimension(170, 45));
408+
installButton.setMinimumSize(new java.awt.Dimension(173, 45));
409409
installButton.addMouseListener(new java.awt.event.MouseAdapter() {
410410
public void mouseClicked(java.awt.event.MouseEvent evt) {
411411
installButtonMouseClicked(evt);

0 commit comments

Comments
 (0)