Drop down scrollbar width

Is there anyway to make the scroll bar on a drop down wider? I see a post about a table scroll bar but that does not seem to work for a drop down.

Thank you,

from javax.swing import UIManager UIManager.put("ScrollBar.width", 60) UIManager.put("ScrollBar.height", 20)

This will set the size for all scrollbars in the client. I’ve used it in client startup scripts for touchscreen applications. However, I don’t know if there is a way to do it for a single dropdown component.

Dan

Does this still apply to v8?