1
0
mirror of https://github.com/DanilaFe/abacus synced 2024-07-08 17:52:55 -07:00
This commit is contained in:
Arthur Drobot 2017-07-31 12:40:19 -07:00
commit 9a6b695f97

View File

@ -247,4 +247,9 @@ public class Window extends JFrame {
});
}
@Override
public void setVisible(boolean b) {
super.setVisible(b);
if(b) inputField.requestFocusInWindow();
}
}