Merge pull request #1881 from SiboVG/unstable
Increase default PS settings window size
This commit is contained in:
commit
a4492c8114
@ -91,8 +91,8 @@ public class PhotoFrame extends JFrame {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
setSize(1024, 768);
|
|
||||||
this.setMinimumSize(new Dimension(160, 150));
|
this.setMinimumSize(new Dimension(160, 150));
|
||||||
|
this.setSize(1024, 768);
|
||||||
photoPanel = new PhotoPanel(document, p);
|
photoPanel = new PhotoPanel(document, p);
|
||||||
photoPanel.setDoc(document);
|
photoPanel.setDoc(document);
|
||||||
setJMenuBar(getMenu(app));
|
setJMenuBar(getMenu(app));
|
||||||
@ -117,6 +117,7 @@ public class PhotoFrame extends JFrame {
|
|||||||
settings = new JDialog(this, trans.get("PhotoSettingsConfig.title")) {
|
settings = new JDialog(this, trans.get("PhotoSettingsConfig.title")) {
|
||||||
{
|
{
|
||||||
setContentPane(new PhotoSettingsConfig(p, document));
|
setContentPane(new PhotoSettingsConfig(p, document));
|
||||||
|
setPreferredSize(new Dimension(600, 500));
|
||||||
pack();
|
pack();
|
||||||
this.setLocationByPlatform(true);
|
this.setLocationByPlatform(true);
|
||||||
GUIUtil.rememberWindowSize(this);
|
GUIUtil.rememberWindowSize(this);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user