Skip to content

Commit

Permalink
Fixed main gui horizontal resizing
Browse files Browse the repository at this point in the history
  • Loading branch information
fiebrink1 committed Feb 2, 2016
1 parent 9a3f9ab commit 57ae222
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/wekimini/gui/MainGUI.form
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,9 @@
<Properties>
<Property name="defaultCloseOperation" type="int" value="0"/>
<Property name="title" type="java.lang.String" value="New project"/>
<Property name="maximumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
<Dimension value="[851, 2147483647]"/>
</Property>
</Properties>
<SyntheticProperties>
<SyntheticProperty name="menuBar" type="java.lang.String" value="jMenuBar1"/>
Expand Down
1 change: 1 addition & 0 deletions src/wekimini/gui/MainGUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,7 @@ private void initComponents() {

setDefaultCloseOperation(javax.swing.WindowConstants.DO_NOTHING_ON_CLOSE);
setTitle("New project");
setMaximumSize(new java.awt.Dimension(851, 2147483647));
addWindowListener(new java.awt.event.WindowAdapter() {
public void windowClosing(java.awt.event.WindowEvent evt) {
formWindowClosing(evt);
Expand Down

0 comments on commit 57ae222

Please sign in to comment.