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:
hns 2002-10-02 09:28:33 +00:00
parent 09f046f87a
commit 45974b6664

View file

@ -29,7 +29,7 @@ public class ImageGenerator extends Window {
}
}
);
setBounds (0, 0, 0, 0);
setBounds (0, 0, 1, 1);
setVisible (true);
}