FSchumacher commented on code in PR #719:
URL: https://github.com/apache/jmeter/pull/719#discussion_r913895403
##########
src/core/src/main/java/org/apache/jmeter/gui/action/LookAndFeelCommand.java:
##########
@@ -200,7 +200,7 @@ public LookAndFeelCommand() {
}
public static boolean isDarklafTheme() {
- return "Darklaf".equals(UIManager.getLookAndFeel().getID()); //
$NON-NLS-1$
+ return "Darklaf".equalsIgnoreCase(UIManager.getLookAndFeel().getID());
// $NON-NLS-1$
Review Comment:
If you know how, it would be great, but I think it comes from
JSyntaxTextArea not handling the dark LaF well enough, so that darklaf has some
special handling for it. Sadly, that has to be done *by hand*.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]