DevCharly opened a new pull request, #6144: URL: https://github.com/apache/netbeans/pull/6144
The drag-and-drop insert indicator lines for TreeView, OutlineView and Palette were painted using six `g.drawLine()` statements, which work fine for 100% screen scaling:  But not so good on 150% screen scaling (you can see the six single lines):  This PR changes painting to use a single filled shape and enables antialiasing. At 100%:  At 150%:  This PR also sets the painting color of the D&D line for the palette (was not set before before):  Also fixed some compiler warnings (unused imports, missing Override, ...) -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
