Skip to content

Commit

Permalink
Merge pull request IrisShaders#30 from JosueGalRe/fix/bugs
Browse files Browse the repository at this point in the history
fixed some bugs
  • Loading branch information
IMS authored Aug 8, 2022
2 parents f00f317 + 439ef00 commit 2589c01
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,11 @@
</Component>
<Component class="javax.swing.JLabel" name="outdatedText2">
<Properties>
<Property name="font" type="java.awt.Font" editor="org.netbeans.modules.form.editors2.FontEditor">
<FontInfo relative="true">
<Font component="outdatedText2" property="font" relativeSize="false" size="16"/>
</FontInfo>
</Property>
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
<Color blue="0" green="cc" red="ff" type="rgb"/>
</Property>
Expand Down Expand Up @@ -350,13 +355,13 @@
<Property name="text" type="java.lang.String" value="Install"/>
<Property name="toolTipText" type="java.lang.String" value=""/>
<Property name="margin" type="java.awt.Insets" editor="org.netbeans.beaninfo.editors.InsetsEditor">
<Insets value="[15, 60, 15, 60]"/>
<Insets value="[10, 65, 10, 65]"/>
</Property>
<Property name="maximumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
<Dimension value="[300, 45]"/>
</Property>
<Property name="minimumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
<Dimension value="[170, 45]"/>
<Dimension value="[173, 45]"/>
</Property>
</Properties>
<Events>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -403,9 +403,9 @@ public void mouseClicked(java.awt.event.MouseEvent evt) {
installButton.setFont(installButton.getFont().deriveFont((float)16));
installButton.setText("Install");
installButton.setToolTipText("");
installButton.setMargin(new java.awt.Insets(15, 60, 15, 60));
installButton.setMargin(new java.awt.Insets(10, 65, 10, 65));
installButton.setMaximumSize(new java.awt.Dimension(300, 45));
installButton.setMinimumSize(new java.awt.Dimension(170, 45));
installButton.setMinimumSize(new java.awt.Dimension(173, 45));
installButton.addMouseListener(new java.awt.event.MouseAdapter() {
public void mouseClicked(java.awt.event.MouseEvent evt) {
installButtonMouseClicked(evt);
Expand Down

0 comments on commit 2589c01

Please sign in to comment.