* improved auto-size/position
This commit is contained in:
parent
37527a8e8e
commit
e63a37c6cc
|
@ -8,6 +8,7 @@ import static net.sourceforge.tuned.ui.TunedUtilities.*;
|
||||||
|
|
||||||
import java.awt.Color;
|
import java.awt.Color;
|
||||||
import java.awt.Component;
|
import java.awt.Component;
|
||||||
|
import java.awt.Dimension;
|
||||||
import java.awt.Window;
|
import java.awt.Window;
|
||||||
import java.awt.event.ActionEvent;
|
import java.awt.event.ActionEvent;
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
|
@ -94,8 +95,8 @@ class ValidateDialog extends JDialog {
|
||||||
installAction(content, KeyStroke.getKeyStroke("released ESCAPE"), cancelAction);
|
installAction(content, KeyStroke.getKeyStroke("released ESCAPE"), cancelAction);
|
||||||
|
|
||||||
setDefaultCloseOperation(DISPOSE_ON_CLOSE);
|
setDefaultCloseOperation(DISPOSE_ON_CLOSE);
|
||||||
setLocationByPlatform(true);
|
setMinimumSize(new Dimension(365, 280));
|
||||||
setSize(365, 280);
|
pack();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -171,6 +172,7 @@ class ValidateDialog extends JDialog {
|
||||||
}
|
}
|
||||||
|
|
||||||
ValidateDialog dialog = new ValidateDialog(getWindow(parent), invalidFilePaths);
|
ValidateDialog dialog = new ValidateDialog(getWindow(parent), invalidFilePaths);
|
||||||
|
dialog.setLocation(getOffsetLocation(dialog.getOwner()));
|
||||||
|
|
||||||
// show and block
|
// show and block
|
||||||
dialog.setVisible(true);
|
dialog.setVisible(true);
|
||||||
|
|
Loading…
Reference in New Issue