We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem in javax.swing.text.html.HRuleView - color of HR fully hardcoded.
javax.swing.text.html.HRuleView
import com.formdev.flatlaf.FlatDarkLaf; import javax.swing.*; import java.awt.*; public class EditorTest { public static void main(String[] args) { SwingUtilities.invokeLater(() -> { FlatDarkLaf.setup(); JFrame frame = new JFrame(); frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE); frame.setLocationByPlatform(true); frame.setLocationRelativeTo(null); frame.setSize(500, 500); JLabel label = new JLabel(); label.setText(""" <html>Row1<hr noshade>Row2</html> """); JPanel panel = new JPanel(); panel.add(label, BorderLayout.CENTER); frame.add(panel); frame.setVisible(true); }); } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem in
javax.swing.text.html.HRuleView
- color of HR fully hardcoded.The text was updated successfully, but these errors were encountered: