mhalachev commented on PR #7239: URL: https://github.com/apache/netbeans/pull/7239#issuecomment-2042804263
Thanks @neilcsmith-net for the information regarding the actual widget implementation! I'll definitely look into it more extensively. The overall concept of the Dashboard API is presenting a lot of opportunities. One may envision practical enhancements like Tasks and ToDos as widgets, and other stuff in the form of Plugins... I hope the layout suggestions, albeit raw (spacers, headers, etc.), may offer utility for future use. Meanwhile, I think I managed to fix the MacOS X theme border issue. > I can confirm that it is now fine with Motif, but still with border with the Mac OS X theme: <img width="260" alt="white-border" src="https://github.com/apache/netbeans/assets/2463597/f984a8d8-201c-41a5-bef2-cd1c533cf69b"> Setting the border to `0` in `WidgetPanel.java` (l. 107) seems to do the trick: ```java scrollPane.setBorder(BorderFactory.createEmptyBorder()); ``` PS: Can also confirm that looks good with CDE/Motif as well. -- 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
