File tree 3 files changed +4
-4
lines changed
src/processing/mode/android
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ private void createLayout() {
92
92
buttons .setAlignmentX (LEFT_ALIGNMENT );
93
93
JButton okButton = new JButton ("OK" );
94
94
Dimension dim = new Dimension (Toolkit .getButtonWidth (),
95
- Toolkit . zoom ( okButton .getPreferredSize ().height ) );
95
+ okButton .getPreferredSize ().height );
96
96
okButton .setPreferredSize (dim );
97
97
okButton .addActionListener (new ActionListener () {
98
98
public void actionPerformed (ActionEvent e ) {
@@ -128,7 +128,7 @@ public void actionPerformed(ActionEvent e) {
128
128
129
129
JButton resetKeystoreButton = new JButton ("Reset password" );
130
130
dim = new Dimension (Toolkit .getButtonWidth ()*2 ,
131
- Toolkit . zoom ( resetKeystoreButton .getPreferredSize ().height ) );
131
+ resetKeystoreButton .getPreferredSize ().height );
132
132
resetKeystoreButton .setPreferredSize (dim );
133
133
resetKeystoreButton .addActionListener (new ActionListener () {
134
134
public void actionPerformed (ActionEvent e ) {
Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ public void mouseClicked(MouseEvent e) {
155
155
buttons .setAlignmentX (LEFT_ALIGNMENT );
156
156
JButton okButton = new JButton ("OK" );
157
157
Dimension dim = new Dimension (Toolkit .getButtonWidth (),
158
- Toolkit . zoom ( okButton .getPreferredSize ().height ) );
158
+ okButton .getPreferredSize ().height );
159
159
okButton .setPreferredSize (dim );
160
160
okButton .addActionListener (new ActionListener () {
161
161
public void actionPerformed (ActionEvent e ) {
Original file line number Diff line number Diff line change @@ -531,7 +531,7 @@ private void createLayout() {
531
531
buttons .setAlignmentX (LEFT_ALIGNMENT );
532
532
JButton cancelButton = new JButton ("Cancel download" );
533
533
Dimension dim = new Dimension (Toolkit .getButtonWidth ()*2 ,
534
- cancelButton .getPreferredSize ().height );
534
+ cancelButton .getPreferredSize ().height );
535
535
536
536
cancelButton .setPreferredSize (dim );
537
537
cancelButton .addActionListener (new ActionListener () {
You can’t perform that action at this time.
0 commit comments