Merge pull request #83 from negedzuregal/master
added database folder to .gitignore + payoutDialog fix
This commit is contained in:
commit
28c514559d
|
@ -25,7 +25,7 @@
|
|||
/details
|
||||
/logs
|
||||
/dmp
|
||||
|
||||
/database
|
||||
*.db
|
||||
*.xlsx
|
||||
/gen
|
||||
|
|
|
@ -226,8 +226,13 @@ class PayOutDialog extends JDialog implements MessageAwareDialog {
|
|||
inputMap.put(stroke, "ESCAPE");
|
||||
rootPane.getActionMap().put("ESCAPE", actionListener);
|
||||
|
||||
this.setSize(500, 255);
|
||||
this.setVisible(true);
|
||||
SwingUtilities.invokeLater(new Runnable() {
|
||||
public void run() {
|
||||
setSize(500, 255);
|
||||
setVisible(true);
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
return rootPane;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue