Make image generator window one pixel big, since some versions of Java would set their own size for a zero sized window
This commit is contained in:
parent
09f046f87a
commit
45974b6664
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ public class ImageGenerator extends Window {
|
|||
}
|
||||
}
|
||||
);
|
||||
setBounds (0, 0, 0, 0);
|
||||
setBounds (0, 0, 1, 1);
|
||||
setVisible (true);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue