@@ -633,6 +633,8 @@ private static JComponent createInstructionUIPanel(String instructions,
633
633
? configureHTML (instructions , rows , columns )
634
634
: configurePlainText (instructions , rows , columns );
635
635
text .setEditable (false );
636
+ text .setBorder (createTextBorder ());
637
+ text .setCaretPosition (0 );
636
638
637
639
JPanel textPanel = new JPanel (new BorderLayout ());
638
640
textPanel .setBorder (createEmptyBorder (GAP , 0 , GAP , 0 ));
@@ -687,7 +689,6 @@ private static JTextComponent configurePlainText(String instructions,
687
689
JTextArea text = new JTextArea (instructions , rows , columns );
688
690
text .setLineWrap (true );
689
691
text .setWrapStyleWord (true );
690
- text .setBorder (createTextBorder ());
691
692
return text ;
692
693
}
693
694
@@ -701,10 +702,10 @@ private static JTextComponent configureHTML(String instructions,
701
702
702
703
HTMLEditorKit kit = (HTMLEditorKit ) text .getEditorKit ();
703
704
StyleSheet styles = kit .getStyleSheet ();
704
- // Reduce the default margins
705
- styles .addRule ("ol, ul { margin-left-ltr: 20 ; margin-left-rtl: 20 }" );
706
- // Make the size of code blocks the same as other text
707
- styles .addRule ("code { font-size: inherit }" );
705
+ // Reduce the list default margins
706
+ styles .addRule ("ol, ul { margin-left-ltr: 30 ; margin-left-rtl: 30 }" );
707
+ // Make the size of code (and other elements) the same as other text
708
+ styles .addRule ("code, kbd, samp, pre { font-size: inherit }" );
708
709
709
710
return text ;
710
711
}
1 commit comments
openjdk-notifier[bot] commentedon Mar 20, 2025
Review
Issues