Fix welcome border dark mode

This commit is contained in:
SiboVG 2023-09-17 22:39:14 +02:00
parent 8802c48201
commit f77b76b649

View File

@ -61,7 +61,6 @@ public class WelcomeDialog extends JDialog {
textPane.setContentType("text/html");
textPane.setMargin(new Insets(10, 10, 10, 10));
textPane.putClientProperty(JTextPane.HONOR_DISPLAY_PROPERTIES, true);
textPane.setBorder(GUIUtil.getUITheme().getBorder());
String sb = "<html>" +
MarkdownUtil.toHtml(releaseNotes) + "<br><br>" +
@ -82,7 +81,9 @@ public class WelcomeDialog extends JDialog {
textPane.setText(sb);
textPane.setCaretPosition(0); // Scroll to the top
panel.add(new JScrollPane(textPane), "skip 1, left, spanx, grow, push, gapbottom 6px, wrap");
JScrollPane scrollPane = new JScrollPane(textPane);
scrollPane.setBorder(GUIUtil.getUITheme().getBorder());
panel.add(scrollPane, "skip 1, left, spanx, grow, push, gapbottom 6px, wrap");
// Don't show this dialog again
JCheckBox dontShowAgain = new JCheckBox(trans.get("welcome.dlg.checkbox.dontShowAgain"));