@@ -164,20 +164,20 @@ public void displaySearchResults(List<String> filteredClassNames,
164
164
List <Translator .ELEMENT > displayedManifestSearchResultsTokens ,
165
165
String textFromTypingArea ) {
166
166
displayDataState = DisplayDataState .CLASSES_LIST ;
167
- StyleConstants .setFontSize (style , 18 );
167
+ StyleConstants .setFontSize (style , 20 );
168
168
StyleConstants .setForeground (style , theme .getIdentifiersColor ());
169
169
170
170
clearText ();
171
171
172
172
Document doc = new DefaultStyledDocument ();
173
173
jTextPane .setDocument (doc );
174
174
175
- StyleConstants .setFontSize (style , 18 );
175
+ StyleConstants .setFontSize (style , 20 );
176
176
StyleConstants .setBackground (style , theme .getBackgroundColor ());
177
177
178
178
fillTokensToDoc (displayedManifestSearchResultsTokens , doc , true );
179
179
180
- StyleConstants .setFontSize (style , 18 );
180
+ StyleConstants .setFontSize (style , 20 );
181
181
StyleConstants .setForeground (style , theme .getIdentifiersColor ());
182
182
StyleConstants .setBackground (style , theme .getBackgroundColor ());
183
183
@@ -206,7 +206,7 @@ public void displaySearchResults(List<String> filteredClassNames,
206
206
public void displayClassNames (List <String > classNamesToShow ,
207
207
String inputText ) {
208
208
209
- StyleConstants .setFontSize (style , 18 );
209
+ StyleConstants .setFontSize (style , 20 );
210
210
StyleConstants .setForeground (style , theme .getIdentifiersColor ());
211
211
StyleConstants .setBackground (style , theme .getBackgroundColor ());
212
212
@@ -260,7 +260,7 @@ private void displayAllClassesNames(List<String> classNames) {
260
260
long start = System .currentTimeMillis ();
261
261
262
262
displayDataState = DisplayDataState .CLASSES_LIST ;
263
- StyleConstants .setFontSize (style , 18 );
263
+ StyleConstants .setFontSize (style , 20 );
264
264
StyleConstants .setForeground (style , theme .getIdentifiersColor ());
265
265
266
266
clearText ();
@@ -298,7 +298,7 @@ public void displayClass(String classString) {
298
298
}
299
299
300
300
clearText ();
301
- StyleConstants .setFontSize (style , 18 );
301
+ StyleConstants .setFontSize (style , 20 );
302
302
303
303
Document doc = new DefaultStyledDocument ();
304
304
@@ -319,7 +319,7 @@ public void displayClass(String classString) {
319
319
public void displayClass (List <Translator .ELEMENT > elements , String key ) {
320
320
displayDataState = DisplayDataState .INSIDE_CLASS ;
321
321
clearText ();
322
- StyleConstants .setFontSize (style , 18 );
322
+ StyleConstants .setFontSize (style , 20 );
323
323
StyleConstants .setBackground (style , theme .getBackgroundColor ());
324
324
325
325
Document doc = new DefaultStyledDocument ();
@@ -426,8 +426,8 @@ public void displaySharkey() {
426
426
427
427
try {
428
428
StyleConstants .setForeground (style , theme .getIdentifiersColor ());
429
- StyleConstants .setFontSize (style , 13 );
430
- StyleConstants .setFontFamily (style , "Menlo " );
429
+ StyleConstants .setFontSize (style , 15 );
430
+ StyleConstants .setFontFamily (style , "Monospaced " );
431
431
432
432
doc .insertString (doc .getLength (), Doodle .get (), style );
433
433
} catch (BadLocationException e ) {
@@ -447,8 +447,8 @@ public void displayError() {
447
447
448
448
try {
449
449
StyleConstants .setForeground (style , theme .getDefaultColor ());
450
- StyleConstants .setFontSize (style , 13 );
451
- StyleConstants .setFontFamily (style , "Menlo " );
450
+ StyleConstants .setFontSize (style , 15 );
451
+ StyleConstants .setFontFamily (style , "Monospaced " );
452
452
453
453
doc .insertString (doc .getLength (), "\n \n \n \t \t \t There was a problem loading the class " , style );
454
454
doc .insertString (doc .getLength (), Doodle .get (), style );
0 commit comments