mirror of
https://github.com/fabianonline/telegram_backup.git
synced 2024-11-23 01:06:17 +00:00
Compatibility to JAVA 1.7
This commit is contained in:
parent
1ce2562f5a
commit
b3018ad10e
@ -17,7 +17,7 @@ public class GUIController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void showAccountChooserDialog() {
|
private void showAccountChooserDialog() {
|
||||||
JDialog accountChooser = new JDialog();
|
final JDialog accountChooser = new JDialog();
|
||||||
accountChooser.setTitle("Choose account");
|
accountChooser.setTitle("Choose account");
|
||||||
accountChooser.setSize(400, 200);
|
accountChooser.setSize(400, 200);
|
||||||
JPanel vert = new JPanel();
|
JPanel vert = new JPanel();
|
||||||
@ -30,7 +30,7 @@ public class GUIController {
|
|||||||
JPanel bottom = new JPanel(new GridLayout(1, 2));
|
JPanel bottom = new JPanel(new GridLayout(1, 2));
|
||||||
JButton btnAddAccount = new JButton("Add account");
|
JButton btnAddAccount = new JButton("Add account");
|
||||||
bottom.add(btnAddAccount);
|
bottom.add(btnAddAccount);
|
||||||
JButton btnLogin = new JButton("Login");
|
final JButton btnLogin = new JButton("Login");
|
||||||
btnLogin.setEnabled(false);
|
btnLogin.setEnabled(false);
|
||||||
bottom.add(btnLogin);
|
bottom.add(btnLogin);
|
||||||
vert.add(bottom, BorderLayout.SOUTH);
|
vert.add(bottom, BorderLayout.SOUTH);
|
||||||
|
Loading…
Reference in New Issue
Block a user